Hi,
I create three combo box for input, "day","month" and "year",the i put the code:
<?php
$dd=$_POST['day'];//or whatever method u use
$mm=$_POST['month'];
$yy=$_POST['year'];
$date=$yy."/".$mm."/".$dd;
echo $date;
?>
but the date cannot be...