[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 Ooops, incorrect scripts. Let's try again: --script1.php-- // for loop as in Zachery's example --script2.php-- // modified for loop That's much better. ;-) Peter Brett - --- peter:AT:peter-b:DOT:co:DOT

[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