|
[php]$query_result = mysql_query("INSERT INTO users ('username', 'password', 'email', 'security_question', 'answer', 'zipcode', 'state', 'country', 'city', 'telephone', 'aim', 'msn') VALUES ('".$username."','".$password."','".$_POST['email']."','".$security_question."','".$answer."','".$zipcode."','".$state."','".$country."','".$city."','".$telephone."','".$aim."','".$msn."')", $conn) or die(mysql_error());[/php]
On the end of your SQL statement you were still using "','" . $variable . "'," and at some point you have to end it with a )...
__________________
|