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,177 @@
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
+<html>
9
+<head>
10
+<title>Ville de Dragons</title>
11
+<link rel='stylesheet' href='Style.css' type='text/css'>
12
+</head>
13
+<body>
14
+<?php
15
+	AfficheBarreDEtat(0);
16
+	if(!isset($_GET['position'])){
17
+		$position = 1;
18
+	}else{
19
+		$position = $_GET['position'];
20
+	}
21
+?>
22
+<table border="0" height="100%" width="100%">
23
+	<tr>
24
+	<td valign="center">
25
+	<table border="0" cellspacing="0" cellpadding="0" align="center">
26
+		<tr>
27
+			<td width="400">
28
+			<?php
29
+			
30
+			//message d'acceuil
31
+			echo "Vous voici dans la vieille ville, elle est fa�te de vielles pierres, et les maison sont toutes mitoyennes, vous pouvez vous baladez partout seulement fa�tes attention aux malandrins...";
32
+			echo "<center><img src='images/fioriture.png'></center>";
33
+			//fin du message d'acceuil
34
+			
35
+			switch($position){
36
+				case 1:
37
+					//entr�e dans la vieille ville
38
+					//3 portes
39
+					echo	"<a href='vieilleVille.php?position=14'>Prendre le chemin � gauche</a>"
40
+						."<a href='vieilleVille.php?position=10'>Allez tout droit</a>"
41
+						."<a href='vieilleVille.php?position=4'>Prendre le premier chemin � droite</a>"
42
+						."<a href='vieilleVille.php?position=2'>Prendre le second chemin � droite</a>";
43
+				break;
44
+				case 2:
45
+					//3 portes
46
+					echo	"<a href='vieilleVille.php?position=3'>Prendre le chemin � gauche</a>"
47
+						."<a href='vieilleVille.php?position=8'>Allez tout droit</a>"
48
+						."<a href='vieilleVille.php?position=5'>Prendre le chemin � droite</a>";
49
+				break;
50
+				case 3:
51
+					//4 portes
52
+					echo	"<a href='vieilleVille.php?position=6'>Prendre le chemin � gauche</a>"
53
+						."<a href='vieilleVille.php?position=15'>Allez tout droit</a>"
54
+						."<a href='vieilleVille.php?position=11'>Prendre le chemin � droite</a>";
55
+				break;
56
+				case 4:
57
+					//3 portes
58
+					echo	"<a href='vieilleVille.php?position=1'>Prendre le chemin � gauche</a>"
59
+						."<a href='vieilleVille.php?position=16'>Allez tout droit</a>"
60
+						."<a href='sortieParc.php'>Prendre le chemin � droite</a>";
61
+				break;
62
+				case 5:
63
+					//1 portes
64
+					echo	"<a href='sortieParc.php'>Prendre le chemin � gauche</a>"
65
+						."<a href='vieilleVille.php?position=14'>Allez tout droit</a>"
66
+						."<a href='vieilleVille.php?position=1'>Prendre le chemin � droite</a>";				
67
+				break;
68
+				case 6:
69
+					//2 portes
70
+					echo	"<a href='vieilleVille.php?position=2'>Prendre le premier chemin � gauche</a>"
71
+						."<a href='vieilleVille.php?position=4'>Prendre le second chemin � gauche</a>"
72
+						."<a href='sortieParc.php'>Allez tout droit</a>"
73
+						."<a href='vieilleVille.php?position=14'>Prendre le chemin � droite</a>";
74
+				break;
75
+				case 7:
76
+					//2 portes
77
+					echo	"<a href='sortieParc.php'>Prendre le chemin � gauche</a>"
78
+						."<a href='vieilleVille.php?position=14'>Allez tout droit</a>"
79
+						."<a href='vieilleVille.php?position=10'>Prendre le chemin � droite</a>";
80
+				break;
81
+				case 8:
82
+					//3 portes
83
+					echo	"<a href='vieilleVille.php?position=9'>Prendre le chemin � gauche</a>"
84
+						."<a href='vieilleVille.php?position=11'>Prendre le chemin � droite</a>";
85
+				break;
86
+				case 9:
87
+					//3 portes
88
+					echo	"<a href='vieilleVille.php?position=18'>Prendre le chemin tout droit le plus � gauche</a>"
89
+						."<a href='vieilleVille.php?position=6'>Prendre le chemin tout droit le plus � droite</a>"
90
+						."<a href='vieilleVille.php?position=15'>Prendre le chemin � droite</a>";
91
+				break;
92
+				case 10:
93
+					//2 portes
94
+					echo	"<a href='vieilleVille.php?position=15'>Prendre le chemin � gauche</a>"
95
+						."<a href='vieilleVille.php?position=11'>Allez tout droit</a>"
96
+						."<a href='vieilleVille.php?position=18'>Prendre le chemin � droite</a>";
97
+				break;
98
+				case 11:
99
+					//4 portes
100
+					echo	"<a href='vieilleVille.php?position=15'>Prendre le chemin � droite</a>";
101
+				break;
102
+				case 13:
103
+					//3 portes
104
+					echo	"<a href='vieilleVille.php?position=11'>Prendre le chemin � gauche</a>"
105
+						."<a href='vieilleVille.php?position=18'>Allez tout droit</a>"
106
+						."<a href='vieilleVille.php?position=6'>Prendre le chemin � droite</a>";
107
+				break;
108
+				case 14:
109
+					//1 portes
110
+					echo	"<a href='vieilleVille.php?position=13'>Allez tout droit</a>";
111
+				break;
112
+				case 15:
113
+					//1 portes
114
+					echo	"<a href='vieilleVille.php?position=4'>Allez tout droit</a>";
115
+				break;
116
+				case 16:
117
+					//1 portes
118
+					echo	"<a href='vieilleVille.php?position=7'>Prendre le chemin � gauche</a>"
119
+						."<a href='vieilleVille.php?position=3'>Allez tout droit</a>"
120
+						."<a href='vieilleVille.php?position=5'>Prendre le chemin � droite</a>";
121
+				break;
122
+				case 17:
123
+					//2 portes
124
+					echo	"<a href='vieilleVille.php?position=5'>Prendre le chemin � gauche</a>"
125
+						."<a href='vieilleVille.php?position=7'>Allez tout droit</a>"
126
+						."<a href='vieilleVille.php?position=3'>Prendre le chemin � droite</a>";
127
+				break;
128
+				case 18:
129
+					//1 portes
130
+					echo	"<a href='vieilleVille.php?position=8'>Prendre le chemin � gauche</a>"
131
+						."<a href='vieilleVille.php?position=5'>Allez tout droit</a>"
132
+						."<a href='vieilleVille.php?position=7'>Prendre le chemin � droite</a>";
133
+				break;
134
+				
135
+			}
136
+			?>
137
+			</td>
138
+			<td width="300">
139
+			<table border="0" cellspacing="0" cellpadding="0" align="center">
140
+				<tr>
141
+					<td background="images/bordure_01.gif" width="14" height="19">
142
+					</td>
143
+					<td background="images/bordure_02.gif" width="272" height="19">
144
+					</td>
145
+					<td background="images/bordure_03.gif" width="14" height="19">
146
+					</td>
147
+				</tr>
148
+				<tr>
149
+					<td background="images/bordure_04.gif" width="14" height="193">
150
+					</td>
151
+					<td width="272" height="193" align="center" valign="center">
152
+						<?php
							$typeImage="vieilleVille";
							echo "<img src='images/dessins/vieilleVille/".$typeImage.$position.".jpg' border ='0' width='272' height='193'>";
153
+						?>
154
+					</td>
155
+					<td background="images/bordure_06.gif" width="14" height="193">
156
+					</td>
157
+				</tr>
158
+				<tr>
159
+					<td background="images/bordure_07.gif" width="14" height="18">
160
+					</td>
161
+					<td background="images/bordure_08.gif" width="3" height="18">
162
+					</td>
163
+					<td background="images/bordure_09.gif" width="14" height="18">
164
+					</td>
165
+				</tr>
166
+			</table>
167
+			</td>
168
+		</tr>
169
+	</table>
170
+	</td>
171
+	</tr>
172
+</table>
173
+</body>
174
+</html>
175
+<?php
176
+	mysql_close();
177
+?>