Why is this happening???
$id = 000011;
echo $id; // Displays: 9
$id = 11;
echo $id; // Displays: 11
How do I make the first number (00011) display as 11? Why is it showing 9?
Thanks.
Monty
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

