Version 0.9b

This commit is contained in:
nemunaire 2007-11-21 12:00:00 +01:00
commit 73645ccc1f
25 changed files with 841 additions and 466 deletions

27
pages/charg.php Normal file
View file

@ -0,0 +1,27 @@
<?php
session_start();
require('../securite.php');
print '<html>
<head>
<title>Halo battle</title>
<link rel="stylesheet" type="text/css" 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" />
</head>
<body>
<br /><br /><br /><br /><br /><br />
<div class="centre">
<table style="margin-left: auto; margin-right: auto; width: 275px; height: 50px">
<tr>
<td><b>Chargement de votre compte en cours ...</b></td>';
require_once 'bdd.php';
print '</tr>
</table>
</div>
<script type="text/javascript">document.location = \'depart.php\'</script>
</body>
</html>';
?>