<?php
$yourname=$_POST["yourname"];
$email=$_POST["email"];
$password=$_POST["password"];
$country=$_POST["country"];
include('includes/config.php');
$result = mysql_query("
INSERT INTO `ban`.`users`
(`userid`,
`email`, `password`, `yourname`, `country`)
VALUES (NULL, '$email', '$password', '$yourname', '$country'")
or die (mysql_error());
?>
this is the page which goes after user pressing submit button in registration form.
i want to insert data from form variables.what’s wrong with it?
this is the error i got:—
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 ” at line 4
you don’t have a closing bracket.