Got a question.
I have a form setup that will submit some data to a MySQL database. That's all cool n stuff. I know how to submit it, and I know how to get it to display. How would I be able to edit it, like have the data from a particular field display in the textbox?
I basically want to have a simple form like so
<form method="post" action="display.php">
<input type="text" name="uid">
</form>
and on the display.php I want to have all of the fields, which is uid, ufname, ulname...for id, first name, last name, but I want it to display the firstname and lastname of the id in question.
Can anyone point me to an example that will do that?
I guess my question is really, how can I display information from a database in a php page so that I can edit and update the record?