Hello All
I've encountered another problem since upgrading to PHP 5.3.0
I get the following message:
Notice: A non well formed numeric value encountered in C:\wamp\www\pos\reports\form.php on line 38
Some background:
$day=date("d");
$month=date("m");
$year=date("Y");
$today=date("Y-m-d").":".date("Y-m-d");
The offending line:
$alltime=date("Y-m-d",mktime(0,0,0,1,1,0000)).":".date("Y-m-d",mktime(0,0,0,$month,$day,$today));
The part it seem to dislike is this:
date("Y-m-d",mktime(0,0,0,$month,$day,$today))
I'm not sure what it is complaining about. What is wrong with this line of code?
Thanks in advance for your help.
Regards
Russ