I keep getting the following error
Error: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '(''),'','','','','')' at line 3
My code can be seen below:
//Insert statement into the Users table with the values posted from the form
$sql="INSERT INTO Users (Username, Password, Forename, Surname, Email, `Post Code`, `Phone Number`)
VALUES
('$_POST[username]', md5.('$_POST[password]'),'$_POST[fore]','$_POST[sur]','$_POST[email]','$_POST[postcode]','$_POST[phone]')";