Hi, on login.php , we can see that :
(...)
$sql = "SELECT Login FROM logins
WHERE Login='$fuserna me'";
$result = mysql_query($sq l)
or die("Couldn't execute query1.");
(...)
field : login from table: logins
fusername is a valid form field.
I just can't understand why I get the message Couldn't execute query1.
I don't see any syntax error. :-(
Thank you in advance
Ben
(...)
$sql = "SELECT Login FROM logins
WHERE Login='$fuserna me'";
$result = mysql_query($sq l)
or die("Couldn't execute query1.");
(...)
field : login from table: logins
fusername is a valid form field.
I just can't understand why I get the message Couldn't execute query1.
I don't see any syntax error. :-(
Thank you in advance
Ben
Comment