Re: Videos 1-20
Posted: Wed Aug 11, 2010 11:49 am
Alright after been trough all the videos, and inported the db from the SQL provided with this tut, i have a little problem....
Everytime i try to register, it says could not register
I have looked trough the connect.php file = good
i have looked trough register.php = good
i have looked trough reguser.php and it gets stuck on this line...
dunno but the whole db is setup good including the connect.php file
Everytime i try to register, it says could not register
I have looked trough the connect.php file = good
i have looked trough register.php = good
i have looked trough reguser.php and it gets stuck on this line...
Code: Select all
$SQL = "INSERT into players(name, password, email, level, exper, attack, defense, hpoints, maxhp, spoints, maxspoints,pclass) VALUES ('$player','$password','$email','1','0','$classquery3[attack]','$classquery3[defense]','$classquery3[hpoints]','$classquery3[hpoints]','$classquery3[spoints]','$classquery3[spoints]','$classquery3[name]')";
mysql_query($SQL) or die("could not register");