Hello developers:
I have 3 pulldowns, one for day, month and year, and i want to insert them into a mysql datetime field:
of course the values i have after the user selects date is, p. ex.
$Year="2000";
$Month="11";
$Day="23";
...
$Mydate = $Year.$Month.$Day;
so my sql string if formed like:
mysql_quey(...,"insert into mytable values (NULL, '$Mydate'");
but i have recieved and error that it can not insert my value date !!!
can you help me please ??? 10s !!!