$title="1.FC Köln, Cologne Football Club";
require "head.php";
?>
the last matchs
date |
opponent |
location |
type
of game |
result |
$count=0;
$request="select * from result ";
$request.="order by date desc";
$res=mysql_query($request, $dbh);
while (($row=mysql_fetch_array($res)) && $count<10) {
$count++;
$d=localtime($row[1]);
$d[4]++;
$d[5]+=1900;
$date=sprintf("%02d/%02d/%4d", $d[3], $d[4], $d[5]);
print "
$date |
$row[2] |
$row[3] |
$row[4] |
$row[5] $row[6] |
";
}
?>
View the comments for
the matchs.
last_article();
print "View all the articles.
";
require "foot.php";
?>