Version 2007-10-27

This commit is contained in:
nemunaire 2007-10-27 12:00:00 +02:00
commit 4909921671
98 changed files with 6096 additions and 2268 deletions

View file

@ -1,16 +1,27 @@
<? echo"<html>
<?php
echo"<html>
<head>
<title>Halo battle</title>
<link rel=stylesheet media=screen type=text/css title=design href=descriptions/diz/base.css >
<meta http-equiv=pragma content=no-cache >
<meta http-equiv=content-type content=text/html;charset=iso-8869-1 >
<link rel=shortcut icon type=image/x-icon href=favicon.ico >
<style TYPE=text/css>
table {
margin-top: 25px;
}
TD.z {
min-width: 15px;
}
</style>
</head>
<body>";
mysql_connect("localhost", "root", "");
mysql_select_db("wars");
require('../connectBDD.php');
echo "<table align=center><tr><td>Place</td><td>Race</td><td>Pseudo</td><td>Points</td><td>Flotte</td><td>Recherches</td></tr>";
echo "<table align=center><tr><td>Place</td><td>Race</td><td>Pseudo</td><td class=z>Points</td><td class=z>Flotte</td><td class=z>Recherches</td></tr>";
$ee = mysql_query("SELECT * FROM classement ORDER BY points DESC");
$i=1;
while ( $data = mysql_fetch_array($ee) ){