Hello, I am inserting a date into a mysql dbase and for some reason it doesn't show the "hour", "minute" ,and "seconds" .. All I get is 00:00:00 for the time.. Here is my string:
$endDate = date("Ymd H:i:s",mktime(0,0,0,$emonth,$eday,$eyear));
this returns the following:
2001-03-23
00:00:00
why is it returning 00:00:00 ???
What the heck am I doing wrong? Im running php 4 (not sure if that matters)..
Any help is appreciated.