div Posted September 22, 2008 Share Posted September 22, 2008 I'm trying to insert information into the database, here's no error message coming up but it isn't inserting. I've checked, double-checked and triple-checked the numbers, everything is lined up right but it just won't work. mysql_query("insert into transactions (playerid,toid,fromid,amount,for) values ('$sid','1','$sid','5000','Created')"); All the code before and after it is working properly, and the values are all valid. It's all but identical to another INSERT command right below it, which is working 100% fine. Help! ??? Quote Link to comment https://forums.phpfreaks.com/topic/125258-solved-wont-insert-into-database/ Share on other sites More sharing options...
Mchl Posted September 22, 2008 Share Posted September 22, 2008 Do echo "insert into transactions (playerid,toid,fromid,amount,for) values ('$sid','1','$sid','5000','Created')"; to see if its formed all right. Do if (!mysql_query("insert into transactions (playerid,toid,fromid,amount,for) values ('$sid','1','$sid','5000','Created')")) { echo mysql_error(); } to check for mysql errors. Quote Link to comment https://forums.phpfreaks.com/topic/125258-solved-wont-insert-into-database/#findComment-647529 Share on other sites More sharing options...
PFMaBiSmAd Posted September 22, 2008 Share Posted September 22, 2008 http://dev.mysql.com/doc/refman/5.0/en/reserved-words.html Quote Link to comment https://forums.phpfreaks.com/topic/125258-solved-wont-insert-into-database/#findComment-647655 Share on other sites More sharing options...
div Posted September 23, 2008 Author Share Posted September 23, 2008 Ahh, of course! Changed 'for' to 'info' in the database and script, and it is now working perfectly. Thanks a million! Quote Link to comment https://forums.phpfreaks.com/topic/125258-solved-wont-insert-into-database/#findComment-648477 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.