Browse code

Version initiale du programme sous forme de boucle conditionnelle

Emmanuel ROY authored on 01/05/2022 12:54:29
Showing 1 changed files
1 1
new file mode 100755
... ...
@@ -0,0 +1,93 @@
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
+				echo "<center><img src='images/fioriture.png'></center>";
50
+				echo "<a href='maisonTravailleurEscaliers.php'>Descendre les escaliers</a>";
51
+			?>
52
+			</td>
53
+			<td width="300">
54
+			<table border="0" cellspacing="0" cellpadding="0" align="center">
55
+				<tr>
56
+					<td background="images/bordure_01.gif" width="14" height="19">
57
+					</td>
58
+					<td background="images/bordure_02.gif" width="272" height="19">
59
+					</td>
60
+					<td background="images/bordure_03.gif" width="14" height="19">
61
+					</td>
62
+				</tr>
63
+				<tr>
64
+					<td background="images/bordure_04.gif" width="14" height="193">
65
+					</td>
66
+					<td width="272" height="193" align="center" valign="center">
67
+						<?php
68
+								echo "<div style='position:relative;top:0;left:0'><img src='images/dessins/FermeChambre.jpg' border ='0' width='272' height='193'></div>";
69
+						?>
70
+					</td>
71
+					<td background="images/bordure_06.gif" width="14" height="193">
72
+					</td>
73
+				</tr>
74
+				<tr>
75
+					<td background="images/bordure_07.gif" width="14" height="18">
76
+					</td>
77
+					<td background="images/bordure_08.gif" width="3" height="18">
78
+					</td>
79
+					<td background="images/bordure_09.gif" width="14" height="18">
80
+					</td>
81
+				</tr>
82
+			</table>
83
+			</td>
84
+		</tr>
85
+	</table>
86
+	</td>
87
+	</tr>
88
+</table>
89
+</body>
90
+</html>
91
+<?php
92
+	mysql_close();
93
+?>