when i retrieve a value from database for a textfield (single line) i used this and it work:
<input name="title" type="text" id="title" size="30" VALUE="<?php print $qry[Title];?>">
when i to do the same thing for the textfield but for multiline: i try to use the same method:
<textarea name="message" cols="25" rows="5" id="message" value="<?php print $qry[Message];?>" ></textarea>
it does not work, why, can some one help me please, thanks


