srhino Posted January 15, 2008 Share Posted January 15, 2008 Can someone tell me how to do this? I have a database with customers in it. I update a section called notes so I can put notes of our conversation in it. here is the code on the update... The problem is when I go to update it doesn't show whats is already in the database. <tr><td>Notes:</td><td><textarea rows=\"10\" cols=\"50\" name=\"notes\" value=\"$notes\"></textarea></td></tr><br> When I put in like this <tr><td>Notes:</td><td><input type=\"text\" size=\"40\" name=\"notes\" value=\"$notes\"></td></tr><br> You can do it correctly...there is just not a text area to see all the notes? Help please Link to comment https://forums.phpfreaks.com/topic/86169-solved-help-updating-a-text-area/ Share on other sites More sharing options...
pocobueno1388 Posted January 15, 2008 Share Posted January 15, 2008 Try <tr><td>Notes:</td><td><textarea rows=\"10\" cols=\"50\" name=\"notes\">$notes</textarea></td></tr><br> Link to comment https://forums.phpfreaks.com/topic/86169-solved-help-updating-a-text-area/#findComment-440070 Share on other sites More sharing options...
srhino Posted January 15, 2008 Author Share Posted January 15, 2008 Thanks...I'm so stupid ??? Link to comment https://forums.phpfreaks.com/topic/86169-solved-help-updating-a-text-area/#findComment-440078 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.