Hi, correct syntax for mktime is mktime( int hour, int minute, int second, int month, int day, int year) -- Shafiq Rehman (ZCE) http://www.phpgurru.com | http://shafiq.pk Cell: +92 300 423 9385 On 7/9/07, Jason Pruim <japruim@xxxxxxxxxx> wrote:
Okay so given this section of code: $taskTime=mktime(00,00,00,$_POST['txtReschedule']); echo <<<HTML <tr> <td bgcolor="{$rowColor}">ID#, {$row['id']} </td> <td bgcolor="{$rowColor}">TicklerName, {$row['task_name']} </td> <td bgcolor="{$rowColor}">Instructions, <a href='{$row ['task_desc']}'>Instructions</a></td> <td bgcolor="{$dowColor}">DayOfWeekWord, {$dowword} </td> <td bgcolor="{$rowColor}">DateToReschedule, <input type='text' name='tasks[{$row['id']}][txtReschedule]' value=''></td> <td bgcolor="{$rowColor}">DateRescheduled, {$Date}</td> <td bgcolor="{$rowColor}"><a href='update.php?taskid={$row['id']} &taskdate={$taskdate}'>Click here!</a></td> <td bgcolor="{$rowColor}">CheckboxForWhenDone, <input type='checkbox' name='tasks[{$row['id']}][chkDone]' value='{$row['id']}'></td> </tr> HTML; Why am I getting a time stamp of: 1165640400 Sat, Dec-09-06? I have been fighting with trying to figure this out and finally decided to show my ignorance of the language and ask for help :) Besides, the boss wants this done :) Jason <?PHP if($brain =="Monday"){ echo "Let me go home!" }; ?> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php