Hi all,
This might be well known, so apologies if I'm going over old ground - I've
not seen this explained this way.
Last year I did a site using the variable variables method to parse row
data.
Now that I've moved to globals=off, I couldn't get that to work so I tried a
few other options settling for the following:
('howmany' is the number of form rows on the previous page)
$howmany = $_REQUEST['howmany'];
for ($index = 1; $index < $howmany; $index++){
$e_id = 'e_id'.$index;
$e_id = $_REQUEST[$e_id];
Then do something with it.
Hope this helps someone.
George in Oxford
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php