Logo The Game Master

 

NewsGamesCalendarShopslinksAbout The Game MasterContactHome - English Home - English Home - Nederlands

Newsitems

"; echo "There is a connection problem with the server. Please try again an other time for the news."; } else { mysql_select_db($db); $query = "SELECT * FROM nieuwsitems"; $result = mysql_query($query); $n=mysql_num_rows($result); $grp=$_GET[grp]; if ($grp=="") $grp=0; else if (is_numeric($grp)==false) $grp=0; // put the line with the links for the next newsitems here if ($n>10) { $x=0; while ($x<$n) { echo ""; echo $x+1; echo "-"; echo $x+10; echo ""; echo "  "; $x=$x+10; } echo "

"; } //-------------------------------------------------------- $query = "SELECT * FROM nieuwsitems order by datum desc limit $grp,10"; $result = mysql_query($query) or die ('Error: '.$query); $n=1; while ($row=mysql_fetch_array($result)) { if ($taal=="en") { $kop=$row[kopgb]; $subkop=$row[subkopgb]; $lees="Read more..."; } else { $kop=$row[kop]; $subkop=$row[subkop]; $lees="Lees meer..."; } echo "

$kop
"; echo "$subkop
"; echo europdate($row[datum])."
"; echo "$lees

"; } } ?>