ah, okay, thanx a lot for your help. but now, my code to fetch it does'nt show the news🙁
EDIT: very weird....it displays all news except for the first entry. is there any way to fix that?
<?php
$db_name = "novaz3ro_com";
$connect = mysql_connect('localhost','***','***');
$db = mysql_select_db($db_name,$connect);
$sql = mysql_query("SELECT content FROM SEA_news", $connect);
$news = mysql_fetch_row($sql) or die("No news to be displayed.");
while($row = mysql_fetch_array($sql)) {
echo "$row[content]<br><br>";
}
?>