0

I'm having problems with insert details to mysql server. This is the code (a simple one):

<?php
//Input posted data.
$Fname = $_POST["Fname"];
$Lname = $_POST["Lname"];
$Date = $_POST["Date"];
$Mail = $_POST["Mail"];
$Pass = $_POST["Pass"];

// Create connection
$conn = mysqli_connect('localhost','root',"");

//Check if the connection was opened, if not prompt the error to the page.
if ($conn)
{
die('Could not connect: ' . mysql_error());
}

//Select the data base.
mysqli_select_db("club",$conn);

//Set the character set to utf-8 to allow hebrew.
mysqli_query("SET NAMES 'utf8'");   

//SQL query - user Details 
$sql = "INSERT INTO 'customers' (Fname, Lname, Mail, Date, Pass) 
VALUES('$Fname','$Lname','$Mail','$Date','$Pass');

//Run SQL query
$results = mysqli_query($query) or die (mysql_error());


//Close the SQL connection.
mysqli_close($conn);

?>

I'm getting this error:

Parse error: syntax error, unexpected end of file in C:\xampp\htdocs\Contact.php on line 36 <--- The last line

Can really use your help.

thanks in advance, Jason.

Jason B.
  • 9
  • 2

1 Answers1

2

$results=mysqli_query($sql);

you have given $query instead of $sql

user223321
  • 155
  • 1
  • 15