This is the query and followed by the code I use:
$querypopulate = "SELECT interests, nickname, about, favsport, favplayer, greatest, homepage, teamhomepage, location, yahoo, msn, icq, aim, favmovie from profile WHERE user_name = '$_SESSION[Username]'";
$populate = mysql_query($querypopulate) or die("Select Failed!");
$populate = mysql_fetch_array($populate);
echo "<td class=\"text\"><p><input name=\"about\" type=\"text\" size=\"70\" value=$populate[2]></p></td>";
Also does it matter if I use blob? Does it have any effect on DB performance?
Thanks for the help.