Re: [PHP] who can do this without the recursion

2005-07-06 Thread Richard Lynch
On Tue, July 5, 2005 3:08 pm, Rene Brehmer said: Documented research indicate that on Tue, 5 Jul 2005 14:07:21 -0700 (PDT), Richard Lynch wrote: You'd think having done a zillion of these in my Grad School days would have made more of an impression... Mostly it impressed me that recursion

[PHP] who can do this without the recursion

2005-07-05 Thread Jochem Maas
hi everyone, I have a function which recursively loops an assoc array in order to build an HTML string containing hidden input elements that repesent the key/values passed in the array ... I know this can be done without recursion but I'm having a brainfreeze, anyone care to share some tips on

Re: [PHP] who can do this without the recursion

2005-07-05 Thread Chris Ramsay
= ? : ; nah, didn't think so - none the less you might be surprised how many people it annoys ;-) It annoys the hell out of me, but I can't help liking it at the same time...I am now really confused!!! -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] who can do this without the recursion

2005-07-05 Thread Richard Lynch
On Tue, July 5, 2005 3:48 am, Jochem Maas said: I have a function which recursively loops an assoc array in order to build an HTML string containing hidden input elements that repesent the key/values passed in the array ... I know this can be done without recursion but I'm having a

Re: [PHP] who can do this without the recursion

2005-07-05 Thread Rene Brehmer
Documented research indicate that on Tue, 5 Jul 2005 14:07:21 -0700 (PDT), Richard Lynch wrote: You'd think having done a zillion of these in my Grad School days would have made more of an impression... Mostly it impressed me that recursion wasn't cool -- just another tool and one that you

Re: [PHP] who can do this without the recursion

2005-07-05 Thread Gaby vanhegan
On 5 Jul 2005, at 23:08, Rene Brehmer wrote: Mostly it impressed me that recursion wasn't cool -- just another tool and one that you only should pull out 1% of the time. When we learned about recursion it took our teacher 15 minutes to come up with an example for what the heck it was good

Re: [PHP] who can do this without the recursion

2005-07-05 Thread Christopher Fulton
On 7/5/05, Jochem Maas [EMAIL PROTECTED] wrote: hi everyone, I have a function which recursively loops an assoc array in order to build an HTML string containing hidden input elements that repesent the key/values passed in the array ... I know this can be done without recursion but I'm