I am trying to build a dynamic form, and I am using the code below to let
the user ,name the fields that are generated,but i want to give the user the
option of changing individual field sizes but I cant get it to work.
TIA
george
for ($i=0; $i < $fields; $i++)
{ $fieldName = "field$i";
echo "<tr><td><input type=text name=\"$fieldName\"
value=\"${$fieldName}\">\n";
}
echo "<input type=hidden name=\"fields\"
value=\"$fields\">\n</td></tr>";
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]