I am having trouble saving the date of birth in Mysql Db from Php registration form, what am I doing wrong?
Check.php
$month = $_POST[\'month\'];
Mysql query should be format like
mysql_query("INSERT INTO users(FirstName,LastName,Phone,DOB)VALUES ( '".$FirstName."','". $LastName . "','" . $Phone . "','" . $Year . "-" . $Month + "-" . $Day . '")");