Reimporting GIT repository

This commit is contained in:
Carlos Solís 2017-08-14 12:09:53 -06:00
commit 57f6a03c34
37 changed files with 9949 additions and 0 deletions

16
php/postMessage.php Normal file
View file

@ -0,0 +1,16 @@
<?php
if (!empty($_GET["message"])) {
$conn = mysql_connect("localhost", "root", "N00b0r1337") or die(mysql_error());
$db = mysql_select_db("project") or die(mysql_error);
$usr = $_GET["username"];
//$posttime = $_GET["time"];
$posttime = date("Y-m-d H:i:s");
$content = $_GET["message"];
$sqlQuery = "INSERT INTO messages (usr, time, content) VALUES ('".$usr."', '".$posttime."', '".$content."')";
$sqlResult = mysql_query($sqlQuery, $conn) or die(mysql_error());
echo '{"requestValid":"true"}'; //Must work to reach here or else there will be no answer... hopefully
} else {
echo '{"requestValid":"false"}';
}
?>