4a503405 |
<?php
//creation de la session ... inclusion du code ... verification de la session connect�e...
session_start();
include ('fonctions.php');
check_session();
include ('fonctionsDenTete.php');
?>
<html>
<head>
<title>Ville de Dragons</title>
<link rel='stylesheet' href='Style.css' type='text/css'>
</head>
<script language="JavaScript">
function PopUp() {
var Option = 'width=500,height=700,'
+ 'left=50,top=100,'
+ 'screenX=50,screenY=100';
Fenetre = window.open('ennemi2.php','Combat',Option);
}
</script>
<body>
<table border="0" height="100%" width="100%">
<tr>
<td valign="center">
<table border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td width="400">
<table border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td background="images/bordure_01.gif" width="14" height="19">
</td>
<td background="images/bordure_02.gif" width="300" height="19">
</td>
<td background="images/bordure_03.gif" width="14" height="19">
</td>
</tr>
<tr>
<td background="images/bordure_04.gif" width="14" height="300">
</td>
<td width="300" height="300" align="center" valign="center">
<?php
echo "<img src='images/dessins/logoDragonCercle.jpg' border ='0' width='300' height='300'>";
?>
</td>
<td background="images/bordure_06.gif" width="14" height="300">
</td>
</tr>
<tr>
<td background="images/bordure_07.gif" width="14" height="18">
</td>
<td background="images/bordure_08.gif" width="300" height="18">
</td>
<td background="images/bordure_09.gif" width="14" height="18">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<?php
echo "<p align='left'>vous n'avez pas fini de combattre</p>";
echo "<center><img src='images/fioriture.png'></center>";
echo "<a href=javascript:PopUp()>Finir de combattre...</a>";
?>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
<?php
mysql_close()
?>
|