i need to insert a date into MYSQL DB which the user selects the DAY MONTH YEAR from 3 combo boxes
[code=php]
$day=$_POST['day'];
$month=$_POST['month'];
$year=$_POST['year'];
[/code]
im not sure whether to make the DB field DATE or TIMESTAMP ..
and if so ..how can i insert it into the database if it was a TIMESTAMP ??
[code=php]
$day=$_POST['day'];
$month=$_POST['month'];
$year=$_POST['year'];
[/code]
im not sure whether to make the DB field DATE or TIMESTAMP ..
and if so ..how can i insert it into the database if it was a TIMESTAMP ??
Comment