On Jul 9, 2007, at 9:02 AM, clive wrote:
Jason Pruim wrote:
Okay so given this section of code:
$taskTime=mktime(00,00,00,$_POST['txtReschedule']);
im not certain, but I dont think you can pass the date to mktime as
1 variable, the function requires the following
mktime($hour, $minute,$second, $month , $day ,$year);
so maybe you need to split up your posted variable
clive
So do an
explode($_POST['txtReschdeule'], "/"); // type of thing?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php