Dave - ...and then Dave Carrera said... % % Thank you for clearing up my rather lame explanation. % % So how can I process $_POST[dynamic-name][user-entered-value] arrays to give % me my desired output: % % fname0 = value flab0 = value fplc0 = value
Do you really want a variable called $fname0 and another $fname1 and so
on, or do you just want this output? It seems to me that you probably
want the latter, so you need only walk through your array:
foreach ( array_keys($_POST[fname]) as $k )
{
print "fname$k = {$_POST[fname][$k]} " ;
print "flab$k = {$_POST[flab][$k]} " ;
print "fplc$k = {$_POST[fplc][$k]}<br>\n" ;
}
HTH & HAND
:-D
--
David T-G * There is too much animal courage in
(play) [EMAIL PROTECTED] * society and not sufficient moral courage.
(work) [EMAIL PROTECTED] -- Mary Baker Eddy, "Science and Health"
http://justpickone.org/davidtg/ Shpx gur Pbzzhavpngvbaf Qrprapl Npg!
pgp00000.pgp
Description: PGP signature

