RE: [PHP] array empty after use

2002-05-21 Thread David Freeman
> When an array is 'used' with something like do while I can't > re-access it later in the page. Arrays have a pointer that steps through the array as you 'use' it. Once you reach the end you'll have to reset that pointer before you can step through the array again. See the manual section on

Re: [PHP] array empty after use

2002-05-21 Thread Jim lucas
ay, May 21, 2002 2:47 AM Subject: [PHP] array empty after use > Hi there. > > When an array is 'used' with something like do while I can't re-access it > later in the page. It is as if the array gets used up and doesn't exist. > The array is from a select statement

Re: [PHP] array empty after use

2002-05-21 Thread Tom Rogers
Hi You just need to reset the array pointer with reset($array_name) Tom At 07:47 PM 21/05/2002, Web wrote: >Hi there. > >When an array is 'used' with something like do while I can't re-access it >later in the page. It is as if the array gets used up and doesn't exist. >The array is from a select

[PHP] array empty after use

2002-05-21 Thread Web
Hi there. When an array is 'used' with something like do while I can't re-access it later in the page. It is as if the array gets used up and doesn't exist. The array is from a select statement using myself. I have inserted a duplicate array with a different name to get around this but figure t