Posted by Erwin Moller on 11/03/81 11:32
Erwin Moller wrote:
<snip>
typo:
> If you expect numbers, eplicitely cast it to integer.
> $start= (int)$_POST["jaar1"];
> $start.="-";
> $start= (int)$_POST["maand1"];
> $start.="-";
> $start= (int)$_POST["dag1"];
>
The last line should of course be:
$start.= (int)$_POST["dag1"];
Regards,
Erwin Moller
Navigation:
[Reply to this message]
|