Hi there,
First the code:
---
$invdate = "14.8.2001";
echo "$invdate\n";
list($day, $month, $year) = split(".", $invdate);
echo "$year-$month-$day";
---
Somehow, the second echo outputs only "--" as it should be "2001-8-14". Any idea why
this happen and how this could be avoided?
Thanks,
- Ville
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]