I know this is not a PHP question, but you are so clever in here :o)
I have a form where people can change there data in the MySQL database.
I then use
<input type="text" name="Town" value="<?echo $town;?>" size="40" maxsize="40">
And the town from the database is collected above this, so the town is in the input field. There can then change it or don't.
But I also have a textarea field, and I can't put a value in it.
I write:
<textarea name="Message" value="<?echo $message;?>" cols="30" rows="10"></textarea>
But the text which is also collected from the database is not in it.
Isn't it possible get the $message in the textarea so you can change it ?