Re: [PHP] Leading zeros in array index

2002-04-19 Thread Kent Briggs
"Joshua B. Jore" wrote: > > Oh it's probably because your numbers are being interpreted as octal. > Either use the array as '00' .. '09' or just 0 .. 9. 00 .. 09 is valid for > 00 to 07 but there is no such thing as 08 and 09 in octal. Ok, tha

[PHP] Leading zeros in array index

2002-04-19 Thread Kent Briggs
8]; echo $x[09]; - returns this result: abcdefghij abcdefghaa The [08] and [09] values are messed up but [00] thru [07] are ok. -- Kent Briggs, [EMAIL PROTECTED] Briggs Softworks, http://www.briggsoft.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php