1 | 1 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,99 @@ |
1 |
+<?php |
|
2 |
+//creation de la session ... inclusion du code ... verification de la session connect�e... |
|
3 |
+session_start(); |
|
4 |
+include ('fonctions.php'); |
|
5 |
+check_session(); |
|
6 |
+include ('fonctionsDenTete.php'); |
|
7 |
+ |
|
8 |
+/*variable de session Couple |
|
9 |
+0:rien ne s'est passer |
|
10 |
+1:l'homme est sortie |
|
11 |
+2:la femme est sortie |
|
12 |
+3:les deux sont sortit |
|
13 |
+4:les deux sont revenus dans leur maison |
|
14 |
+5:le couple est de nouveau r�uni |
|
15 |
+*/ |
|
16 |
+ //verification de la variable donnant le dialogue a atteindre |
|
17 |
+ if(!isset($_GET['attente'])){ |
|
18 |
+ $attente=0; |
|
19 |
+ }else{ |
|
20 |
+ $attente=$_GET['attente']; |
|
21 |
+ } |
|
22 |
+ |
|
23 |
+ if(!isset($_GET['etat'])){ |
|
24 |
+ //ajout ou supression d'energie |
|
25 |
+ if(isset($_GET['Energie'])&&isset($_GET['AjoutOuSuppr'])){ |
|
26 |
+ ChangementEnergie($_GET['Energie'],$_GET['AjoutOuSuppr']); |
|
27 |
+ } |
|
28 |
+ } |
|
29 |
+ |
|
30 |
+ |
|
31 |
+?> |
|
32 |
+<html> |
|
33 |
+<head> |
|
34 |
+<title>Ville de Dragons</title> |
|
35 |
+<link rel='stylesheet' href='Style.css' type='text/css'> |
|
36 |
+</head> |
|
37 |
+<body> |
|
38 |
+<?php |
|
39 |
+ AfficheBarreDEtat(0); |
|
40 |
+?> |
|
41 |
+<table border="0" height="100%" width="100%"> |
|
42 |
+ <tr> |
|
43 |
+ <td valign="center"> |
|
44 |
+ <table border="0" cellspacing="0" cellpadding="0" align="center"> |
|
45 |
+ <tr> |
|
46 |
+ <td width="400"> |
|
47 |
+ <?php |
|
48 |
+ echo "<p align='left'>La pi�ce est vide...</p>"; |
|
49 |
+ if($_SESSION['IntAug']>35){ |
|
50 |
+ echo "<p align='left'>Vous remarquez que le drap sur le cot� masque une porte...</p>"; |
|
51 |
+ } |
|
52 |
+ echo "<center><img src='images/fioriture.png'></center>"; |
|
53 |
+ if($_SESSION['IntAug']>35){ |
|
54 |
+ echo "<a href='maisonTravailleurEscaliers.php'>Entrer dans la porte</a>"; |
|
55 |
+ } |
|
56 |
+ echo "<br/><a href='croisementDroite.php'>Sortir...</a>"; |
|
57 |
+ ?> |
|
58 |
+ </td> |
|
59 |
+ <td width="300"> |
|
60 |
+ <table border="0" cellspacing="0" cellpadding="0" align="center"> |
|
61 |
+ <tr> |
|
62 |
+ <td background="images/bordure_01.gif" width="14" height="19"> |
|
63 |
+ </td> |
|
64 |
+ <td background="images/bordure_02.gif" width="272" height="19"> |
|
65 |
+ </td> |
|
66 |
+ <td background="images/bordure_03.gif" width="14" height="19"> |
|
67 |
+ </td> |
|
68 |
+ </tr> |
|
69 |
+ <tr> |
|
70 |
+ <td background="images/bordure_04.gif" width="14" height="193"> |
|
71 |
+ </td> |
|
72 |
+ <td width="272" height="193" align="center" valign="center"> |
|
73 |
+ <?php |
|
74 |
+ echo "<div style='position:relative;top:0;left:0'><img src='images/dessins/Fermepiece.jpg' border ='0' width='272' height='193'></div>"; |
|
75 |
+ ?> |
|
76 |
+ </td> |
|
77 |
+ <td background="images/bordure_06.gif" width="14" height="193"> |
|
78 |
+ </td> |
|
79 |
+ </tr> |
|
80 |
+ <tr> |
|
81 |
+ <td background="images/bordure_07.gif" width="14" height="18"> |
|
82 |
+ </td> |
|
83 |
+ <td background="images/bordure_08.gif" width="3" height="18"> |
|
84 |
+ </td> |
|
85 |
+ <td background="images/bordure_09.gif" width="14" height="18"> |
|
86 |
+ </td> |
|
87 |
+ </tr> |
|
88 |
+ </table> |
|
89 |
+ </td> |
|
90 |
+ </tr> |
|
91 |
+ </table> |
|
92 |
+ </td> |
|
93 |
+ </tr> |
|
94 |
+</table> |
|
95 |
+</body> |
|
96 |
+</html> |
|
97 |
+<?php |
|
98 |
+ mysql_close(); |
|
99 |
+?> |