Page 3 of 3

yup

Posted: Fri May 16, 2003 4:56 am
by irealms
that query worked fine, its the insert that doesn't :cry:

Code: Select all

$query = "INSERT into 'user' (username, passwd, charname, email) VALUES ('$username', '$passwd', '$charname', '$email')";

fixed

Posted: Fri May 16, 2003 5:13 am
by irealms
renamed the table to users and it works now:

Code: Select all

$query = "INSERT INTO users (username, passwd, charname, email) VALUES ('$username', '$passwd', '$charname', '$email')";

Posted: Fri May 16, 2003 5:14 am
by volka
' and ` are two different characters ;)