> What I'm getting is that the inner while loop executes on the first
> execution of the outer while, and then not at all. How would I get
> it to execute each time?
Coming from a perl background, I got stuck there too when I started using
PHP. PHP has this odd notion of an array pointer. After the first time you
loop through the array, the pointer is at the end, so the second loop won't
really do anything. Use the reset frunction to reset the array pointer to
the first element.
- Darryl
----------------------------------------------------------------------
Darryl Friesen, B.Sc., Programmer/Analyst [EMAIL PROTECTED]
Education & Research Technology Services, http://gollum.usask.ca/
Department of Computing Services,
University of Saskatchewan
----------------------------------------------------------------------
"Go not to the Elves for counsel, for they will say both no and yes"
--
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]