I am trying to retrieve data from mysql and put into text area. Others data that insert to text box works well but i faced problem when want to insert into text area.
echo'<textarea name="abstract" id="abstract" size="200" value="'.$abstract.'"></textarea>';
I have fetch my query out with
$result = mysql_query("SELECT * FROM publication where file_id='$id'");
$row1 = mysql_fetch_array($result);
$abstract=$row1['abstract'];
Thanks for helping me...