Ok heres my codes...
------------text area box---------
<td width="148" height="394" align="center" rowspan="19"><font face="Verdana">
<textarea wrap="virtual" name="remarks1" rows="31" cols="16"></textarea></font></td></tr>
then I have my perl script to manipulate the data from my form then save it to MySQL Database.
------------accessing fields of a certain id -------------
mysql_select_db("mydb", $db);
$result = mysql_query("SELECT * FROM padbase WHERE idx = '$pid'");
.
.
.
$remarks1 = mysql_result($result,0,"rem1");
Other fields were working fine. This is the only field Im having problem with. I also tried
echo mysql_result($result,0,"rem1");
and its also the same.