|
Posted by "The.Rock" on 12/11/05 09:19
Rob, I thought I had tried everything, except...the following:
$item = $_POST["item$i"]; //Where $i increments and loops thru my POST
vars...WOHOO!
This actually works. Why it works, I'll never know. but it does!
"Robert Cummings" <robert@interjinn.com> wrote in message
news:1134282275.8935.10.camel@blobule.suds...
> 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. |
> `------------------------------------------------------------'
[Back to original message]
|