Hello everyone,
I have the following text area:
<td><textarea name="post" id="post" cols="45" rows="12" value="<?PHP echo $rows['post']; ?>"></textarea></td>
Where I'm trying to bring data from my database and when I run the page nothing shows up, but if I change the text field to this:
<td><input name="author" type="text" id="author" size="37" value="<?PHP echo $rows['post']; ?>"/></td>
Then everything works pretty well.
Anyone knows why is this happening?