Andreu Huguet | fc1e833 | 2020-09-15 18:21:12 +0200 | [diff] [blame] | 1 | <?php |
| 2 | require '../credentials.php'; |
| 3 | require 'utils.php'; |
| 4 | |
| 5 | $credentials = new Credentials(); |
| 6 | |
| 7 | $victimid = $_POST["victim-id"]; |
| 8 | $killerid = $_POST["killer-id"]; |
| 9 | $msgcontent = $_POST["msg-content"]; |
| 10 | |
Andreu Huguet | d5f9c42 | 2020-09-15 18:37:05 +0200 | [diff] [blame] | 11 | $template = "INSERT INTO `missatges` (`id`, `sender_id`, `receiver_id`, `timestamp`, `content`) VALUES (NULL, $killerid, $victimid, CURRENT_TIMESTAMP, '$msgcontent')"; |
Andreu Huguet | fc1e833 | 2020-09-15 18:21:12 +0200 | [diff] [blame] | 12 | if (!query($template)) die("An error ocurred." . $template); |
| 13 | |
| 14 | header("Location: http://pastanagapp2020.mygamesonline.org/main.php"); |
| 15 | ?> |