Okay so I set up a registration form and everything goes well when registering but when I go and check in MySQL database the row is created but only the id field is filled not the First Name, Second Name, Email and Password.
Here's the .PHP for processing the registration :
mysql_select_db("mlsconnection_99k_dbusers", $con);
$sql="INSERT INTO Persons (FirstName, LastName, Email, Password)
VALUES
('$_POST[firstname]','$_POST[lastname]','$_POST[Email]','$_POST[Password]')";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
echo "User created, Thanks for Registrating";
mysql_close($con)
?>