Modifying a query
Hi, I have items pulled from a mysql server database and put into a form field in some php using the print function.{
print "<input type='text' value='$row[rowforfield1]' size=12/>
}
So on a web page there is now a form field with text from the database in it. I need to alter the text in the form field and then send it back to the database. How do I
take the print command above and make it into a query insert? Thank you very much.
|