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 Quote 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, '">'; Quote 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. Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.