professor Posted November 3, 2007 Share Posted November 3, 2007 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 More sharing options...
toplay Posted November 3, 2007 Share Posted November 3, 2007 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, '">'; Link to comment https://forums.phpfreaks.com/topic/75931-solved-display-mysql-data-in-text-field/#findComment-384358 Share on other sites More sharing options...
professor Posted November 3, 2007 Author Share Posted November 3, 2007 that did it thanks, been battling with this for a while. Link to comment https://forums.phpfreaks.com/topic/75931-solved-display-mysql-data-in-text-field/#findComment-384363 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.