lalalalal test

'". mysqli_real_escape_string($dbp, $timestamp) ."' ORDER BY timestamp DESC LIMIT 10"); $results = array(); while ($row = mysqli_fetch_array($resultSet)) { $row["message"] = htmlentities($row["message"]); $row["timestamp"] = htmlentities($row["timestamp"]); $output = array( "msg" => $row["message"], "timestamp" => $row["timestamp"], "display" => date("H:i:s", $row["timestamp"])); array_push($results, $output); } return array_reverse($results); } function addMessage($message) { global $dbp; mysqli_query($dbp, "INSERT INTO messages (message) VALUES ('". mysqli_real_escape_string($dbp, $message) ."')"); } if (isset($_GET["timestamp"])) { echo json_encode(getMessages($_GET["timestamp"])); } else if (isset($_POST["msg"])) { addMessage($_POST["msg"]); echo '{"status": "ok"}'; } ?>

Maak jouw eigen website met JouwWeb