Jump to content

[SOLVED] Won't insert into database


div

Recommended Posts

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!  ???

Link to comment
https://forums.phpfreaks.com/topic/125258-solved-wont-insert-into-database/
Share on other sites

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.

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.