Hi All,
How do I place a value from a query into a textbox
I have the query working and it produces the results... so I thought it would be like this:
$distribName = $row["distrib_co_name"]; to place the value into the variable and then this
echo "<input type=\"text\" name=\"distribName\" size=\"30\" value = \"$distribName \">";
to place the variable into the textbox.
The form is being generated by an include file function called from the page where I do the DB query and after I assign the results to the variable.
Please help.
TIA
Bastien