Jump to content

Need some help


unkownname

Recommended Posts

Hello everyone,

 

Ive been having problems with the following mysql and dont know why or what could someone explain.

 

$uid=$_SESSION['uid'];
mysql_query("INSERT INTO game_pm (subject,message,to,from,inbox) VALUES('$subject','d','$_POST[to]','$uid','$uid')");

mysql_query("INSERT INTO game_pm  (subject,message,to,from,inbox) VALUES('$subject','d','$_POST[to]','$uid','$_POST[to]')")or die(mysql_error());

 

Error is

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'to,from,inbox) VALUES('sd','d','3','2','3')' at line 1

Link to comment
https://forums.phpfreaks.com/topic/62995-need-some-help/
Share on other sites

bwt ds 1...

 

$uid=$_SESSION['uid'];

mysql_query("INSERT INTO game_pm (subject,message,to,from,inbox) VALUES('$subject','d','{$_POST[to]}','$uid','$uid') ");

 

mysql_query("INSERT INTO game_pm  (subject,message,to,from,inbox) VALUES('$subject','d','{$_POST[to]}','$uid','{$_POST[to]}') ")or die(mysql_error());

Link to comment
https://forums.phpfreaks.com/topic/62995-need-some-help/#findComment-313698
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.