Close.
Like this
$query="SELECT *FROM rad ";
$result="mysql_query($query)";
while($row=mysql_fetch_array($result)){
$text=$row['text'];
echo wordwrap($text, 14, "\n", true);
}
The only change I made was fixed misplaced semicolon in last line and took out the double quotes.