Nieuw lid |
|
Ik voel me nu dus echt heel dom... ik heb al heel vaak de met mysql insert into gedaan, en nu werkt het dus niet. Na gekeken, maar kan geen fout spotten. Nog een keer er naar kijken, werkt nog steeds niet. Iemand anders naar gekeken, werkt ook niet. Echt heel raar.
De fout zit hier in:
$account = addslashes($_POST['account']);
$password = addslashes($_POST['pass1']);
$password = md5($password);
$character = addslashes($_POST['character']);
$nation = $_POST['nation'];
$query="INSERT INTO `fnw_members` (account,password,character,nation) VALUES ('$account','$password','$character','$nation')";
mysql_query($query) or die (mysql_error());
$password = md5($password); $nation = $_POST['nation']; $query="INSERT INTO `fnw_members` (account,password,character,nation) VALUES ('$account','$password','$character','$nation')";
En dit is de error:
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 'character,nation) VALUES ('iTeruri','4e5d691bf67182ffc2c5a0966a5
Kan iemand me helpen? Ik zie iets over het hoofd, maar wat?
|