Update send_thread.php
diff --git a/php/send_thread.php b/php/send_thread.php
index 4a0c1d0..1c84caf 100644
--- a/php/send_thread.php
+++ b/php/send_thread.php
@@ -8,7 +8,7 @@
   $killerid = $_POST["killer-id"];
   $msgcontent = $_POST["msg-content"];
   
-  $template = "INSERT INTO messages VALUES (NULL, $killerid, $victimid, NULL, $msgcontent)";
+  $template = "INSERT INTO messages VALUES (NULL, $killerid, $victimid, NULL, '$msgcontent')";
   if (!query($template)) die("An error ocurred." . $template);
   
   header("Location: http://pastanagapp2020.mygamesonline.org/main.php");