In an update script, I want the data from mysql to be displayed on textbox and textarea so that the user can edit it manualy.The textbox is working fine but the same code with textarea is not working.
is working fine but
is not working.Please help.
| Code: |
|
echo'<p><tr><td><b><font face="Sylfaen" color="#008000">Title page:</font></b></td><td> <input type="text" name="title_page" size="20" value="'; echo $title_page; echo'">'; echo'</td></tr></p>'; |
is working fine but
| Code: |
|
echo'<p><tr><td><b><font face="Sylfaen" color="#008000">Title page:</font></b></td><td> <textarea name="title_page" cols="25" rows="25" value="'; echo $title_page; echo'">'; echo'</textarea></td></tr></p>'; |
