Jump to content

[SOLVED] Display MySQL data in text field


professor

Recommended Posts

I have my site set up and am now working on the admin side. I have a page that lets me search my users then its linked to another page so I can edit the information. I am attempting to get the code to display in my forms text boxes and text areas for updating. My problem is that I can't figure out how to get the data into my form for editing. I have a few different things but can't seem to figure this out. Any help would be greatly appreciated. Thank You

Link to comment
https://forums.phpfreaks.com/topic/75931-solved-display-mysql-data-in-text-field/
Share on other sites

Just get the data from table and assign to appropriate HTML fields/tags. This example assumes you've read the first name from a table and assigned it to a variable called $strFirstNameFromTable:

 

echo '<input type="text" name="firstname" value="', $strFirstNameFromTable, '">';

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.