[PHP] Re: [PEAR] [HTML_Form] cant change values in array after getAll()

2002-05-31 Thread Peter TB Brett
peter:AT:peter-b:DOT:co:DOT:uk www.peter-b.co.uk - - Original Message - From: "Peter TB Brett" <[EMAIL PROTECTED]> To: "Zachery Hostens" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, May 31, 2002 9:26 PM Subject: Re: [PEAR] [HTML_Form] cant change val

[PHP] Re: [PEAR] [HTML_Form] cant change values in array after getAll()

2002-05-31 Thread Peter TB Brett
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 In the for loop initialisation try changing: $i <= count($res) to: $i < count($res) Reason: The usual thing that causes that sort of error is an incorrect iteration condition that causes the loop to run forever and so make an infinitely la