game/pages/charg.php

27 lines
759 B
PHP

<?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>';
include_once('common.php');
print '</tr>
</table>
</div>
<script type="text/javascript">document.location = \'depart.php\'</script>
</body>
</html>';
?>