|
Posted by "The.Rock" on 12/11/05 08:15
I tried that, and every combination thereafter. All I get is the following:
"PHP Parse error: parse error, unexpected"
I tried!
"Robert Cummings" <robert@interjinn.com> wrote in message
news:1134279673.8935.7.camel@blobule.suds...
> 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?
>
> <?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]
|