On Sun, 2005-12-11 at 00:41, Robert Cummings wrote: > On Sun, 2005-12-11 at 00:27, The.Rock wrote: > > Here is an example of one of the fields: > > <input name="item{number}" size=60 class="formdata" value="{item}"> > > > > I'm looping thru this form several times, so each time the name gets > > incremented. Do you have an example of what your talking about? Ooops, forgot to update my $i. Updated below and thus avoiding the infinte loop *lol*. <?php $i = 0; // presuming 0 offset. while( isset( $_POST['item'.$i] ) ) { $currItem = $_POST['item'.$i++]; // // Do something with $currItem. // } ?> Cheers, Rob. -- .------------------------------------------------------------. | InterJinn Application Framework - http://www.interjinn.com | :------------------------------------------------------------: | An application and templating framework for PHP. Boasting | | a powerful, scalable system for accessing system services | | such as forms, properties, sessions, and caches. InterJinn | | also provides an extremely flexible architecture for | | creating re-usable components quickly and easily. | `------------------------------------------------------------' -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php