Yes, i have no added a loop.
It is because of the template but i don't know how to sort it,
I'm getting very conffused by it all.
Code update:
PHP Code:
//selecting the 'news' database to use
mysql_select_db("news");
//Get todays date
$today = date("l F dS Y");
// create sql statement
$query="SELECT * FROM news";
$result=mysql_query($query);
// total row number
$num=mysql_num_rows($result);
if ($num>5) {
$to=5;
}else{
$to=$num;
}
$i=0;
while ($i < $to) {
// news fieds
$title=mysql_result($result,$i,"title");
$news=mysql_result($result,$i,"news");
// news fields end
$i++;
}
mysql_close();
and what do you mean by bulletinise?