I guess this is line 19 (where's all this double-spacing coming from? Windows/Unix linebreak conversion mixups?):
echo "$row['content']<br><br>";
Try
echo "$row[content]<br><br>";
(that ought to work)
or
echo "{$row[content]}<br><br>";
or
echo "{$row['content']}<br><br>";
or even
echo $row['content'],"<br><br>";
For your original post:
$sql = mysql_query("SELECT * FROM SEA_news", $connect);
$news = mysql_fetch_row($sql) or die("Database choked on query ($sql). MySQL sez: ".mysql_error());
echo "$news";
You never say which field of the $news array you want printed, which is why PHP just said "Array". It's generally good practice to say which fields you want in the SELECT statement instead of just * (it helps the database engine optimise the query and reduces the amount of data that has to get sent back to PHP and stored there); and if you use mysql_fetch_array() or mysql_fetch_assoc() instead of mysql_fetch_row(), you can refer to the field by name. Exempla gratia:
$sql = mysql_query("SELECT content FROM SEA_news", $connect);
$news = mysql_fetch_array($sql) or die("Database choked on query ($sql). MySQL sez: ".mysql_error());
echo $news['content'];
Oh, and PS: HTML comments end with -->, not --!> 🙂