Some may remember me. I own Wizard Duels (http://www.wizardduels.com). I'm having a minor problem with the join script.
Okay, not going to go into to much detail here. When people join it used to put their username and password into the database (nothing else), I added a small bit to the query thing to add 500 wizard chips (column = chips) to their money. Here's where the problem comes in. When you join it says successful, I checked the mysql table but it doesnt list them, nor hier "chips".
Here's the code:
$query = mysql_query("insert into users(user,pass) values('".$_POST['user']."','".$encpass."','500')");
It used to work (without the 500 chips part) but now it doesnt even add them. Thanks everyone!