Hi Andrew. I'm using a class that was designed to search zip code radius's. Here is the piece that gets them. 2 Mile Radius Search From 90606 $radius="2"; $zipArray1 = $zipLoc->inradius("90606",$radius1); $zip_results1=count($zipArray1); print_r($zipArray1); I'm starting to think it's not php. Just because I tried this code: $string="Wendell Frohwein"; $split=explode(" ",$string); $fname=$split[0]; $lname=$split[1]; print_r($split); And the result that came back was: Array ( [0] => Wendell [1] => Frohwein ) I bought the zip code software from http://www.newdataweb.com/software/zipcode/index.php So, maybe it's something with there software that creates the array, Sorry if I wasted anyone's time -=/ -Wendell Frohwein -----Original Message----- From: Andrew Kreps [mailto:andrew.kreps@xxxxxxxxx] Sent: Tuesday, October 05, 2004 3:43 PM To: php-db@xxxxxxxxxxxxx Subject: Re: Unusual Array Results On Tue, 5 Oct 2004 13:49:11 -0700, Wendell Frohwein <wendell@xxxxxxxxxxxx> wrote: > Hello all again, I am using php 5.0.1 with mysql 4.1.4a-gamma. After I > did this upgrade, I noticed pieced of my code were failing. Took me a > while to figure it out. When I would be working with arrays, sometimes I > would call the values out like so: > > $value=$thearray[0]; > > Every piece of script where I refer to the value like this has failed. > So I ran a print_r() function to see what the output is. This is what I > got: > > Array ( [] => 90606 [1] => 90610 [2] => 90660 [3] => 90661 [4] => 90662 > [5] => 90665 ) > > This is not a huge problem, I just have to use foreach() instead of > for() in my loop. Took me a good while to figure this out. > Could this be a glitch within php 5.0.1? If so, where could I report > this? > How are you populating your array? I just tried your code creating the array as such: $arr = array (90606, 90610, 90660, 90661, 90662); and I got the desired result, which is a 0 indexed array. I'm running PHP 5.0.1 as well, so I don't think this is a bug with the interpreter. Can you post your array initialization code? -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php