Posted by Toby Inkster on 09/28/05 09:49
Els wrote:
> now it appears I have to test them on all different days of the week as
> well? :-(
You do if you use day-dependent functions in server-side scripts.
<?php
$day = (int)date('w');
if ($day)
{
print "<p>The day of the week (in numerical "
print "form) is {$day}.</p>\n";
}
?>
Spot the problem.
--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact
Navigation:
[Reply to this message]
|