Re: Variable $_POST vars?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux