Version 2007-11-04

This commit is contained in:
nemunaire 2007-11-04 12:00:00 +01:00
commit ebc73c5744
377 changed files with 5163 additions and 2495 deletions

View file

@ -1,9 +1,9 @@
<HTML>
<? echo'<HTML>
<HEAD>
<TITLE>Halo Battle</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<link rel="stylesheet" media="screen" name="design" href="descriptions/diz/base.css">
<style type='text/css'>
<style type="text/css">
table {
margin-top: 40px;
}
@ -15,7 +15,8 @@ font-weight: bold;
}
TH {
border: 1px solid
border: 1px solid;
background-color: black;
}
div {
@ -23,43 +24,39 @@ margin: 0px;
border: 0px;
}
</style>
</style>';
</head>
require('../connectBDD.php');
$retour = mysql_query("SELECT COUNT(*) AS nbre_entrees FROM version");
$donnees = mysql_fetch_array($retour);
$x = mysql_query("SELECT * FROM version");
$data = mysql_fetch_array($x);
echo'</head>
</html>
<table width="530" align=center>
<tbody>
<tr>
<td class="z" colspan="2">Mises à jours</td>
</tr>
<tr>
<th>version : 0.0</th>
</tr>';
$result = mysql_query("SELECT * FROM version ORDER BY temps DESC");
while ($data = mysql_fetch_array($result)) {
echo'<tr>
<th>version : '.$data['version'].'</th>
<th width="80%">
<div align="left">
Commencement du projet Halo Battle.
'.$data['contenu'].'
</div></th>
</tr>
<tr>
<th>version : 0.1</th>
<th width="80%">
<div align="left">
Modifications :<br>
- Ajout de milliers de choses utiles.<br>
<br>
Corrections :<br>
- Correction de plein de bugs.
</div></th>
</tr>
</tbody>
</tr>'; }
echo'</tbody>
</table>
</body>
</html>
</html>';
?>