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\'];
You are doing wrong in concating in mysql query.
$FirstName + "','"
above is wrong.
use it as below.
'". $FirstName ."',
Edit
$date = $year."-".$Month."-".$Day; INSERT INTO users (FirstName,LastName,Phone,DOB) VALUES ( '". $FirstName ."','". $LastName ."','". $Phone ."','". $date ."')