> I am trying to generate arrays to hold inputs to columns.  Column
> titles are input to a table as needed.  They are read by the program
> and placed across the page.  Then an array goes under each column name
> to collect the inputs to the various rows.  Everything works except to
> dynamically change the name of the array.
> 
> 
> while($foo=mysql_fetch_array($mysql_result)){
>     print "<INPUT TYPE=text NAME=correspondingfoo[]>";}

Do you want this??

print "<INPUT TYPE=text NAME=" . $foo['something'] . "[]>";

---John Holmes...



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to