Hi, The 28th of march this year is a Sunday, so why does the following script output Wed?
<?php
$loop3_this_day = 28;
$loop3_this_month = 03;
$loop3_this_year = 2004;
echo date("D", mktime(0, 0, 0, $loop3_this_month, $loop3_this_day,
$loop3_this_year));
?>
Any ideas?
Thanks for your help
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

