George you are doing this backwards.  Someone posted the code to do this
the right way last night.  I would use the concatination of a third variable.

         $field = "blah";
         $loops = 10;
for ($i=0; $i < $loops; $i++)
{
         $displayField = $field . $i;
         echo "<tr><td><input type=text name=\"$field\"
         value=\"$displayField\">\n";
}

Rick



At 11:31 PM 3/6/01 +0000, george wrote:
>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]

##########################################################
#  Rick St Jean,
#  [EMAIL PROTECTED]
#  President of Design Shark,
#  http://www.designshark.com/
#  Quick Contact:  http://www.designshark.com/messaging.ihtml
#  Tel: 905-684-2952
##########################################################


-- 
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]

Reply via email to