hello,
i've the following problem with assigning variables in a form that allows to update n db fields based uppon the input of n form fields which are dynamicly created.
my enviorment: php 3/iis5 (although i don't think this info is needed since this seems to be a logical problem)
form1:
...
$id=odbc_result($result,1);
$text=odbc_result($result,2);
while (odbc_fetch_row($result)) {
echo "<tr><td><input name=name$id value=$text>
}
...
so far so good.
form2:
now i want to assign the new value of the input field from form1 to a new variable let's say $b.
$b="\$".$id; assigns the name of the dynamicly created field in form1 to $b -
but how can i get the value?
thanks,
paul ingram.