Hello,
I am using the following code:
<td><input name="pagetitle" id="pagetitle" value="<? echo $pagecontent1; ?>"></td>
That works just fine. If I change it to a textarea:
<td><textarea name="pagecontent" id="pagecontent" rows="5" cols="75" value="<? echo $pagecontent1; ?>"></textarea></td>
It does not work. There is no error message, the textarea is just left blank, whereas the input fields do contain the text from the database.
Am I doing something wrong, or can I not use that php command inside the textbox value?
Thanks in advance,