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,78 @@
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
+?>
17
+<table border="0" height="100%" width="100%">
18
+	<tr>
19
+	<td valign="center">
20
+	<table border="0" cellspacing="0" cellpadding="0" align="center">
21
+		<tr>
22
+			<td width="400">
23
+			<?php
24
+			echo "Vous voici devant la maison du bucheron du village...";
25
+			if($_SESSION['repas']==2){
26
+				echo "<br>Le bucheron de cette for�t est en train de couper du bois...";
27
+			}
28
+			echo "<center><img src='images/fioriture.png'></center>";
29
+			if($_SESSION['repas']==2){
30
+				echo "<a href='D_Bucheron.php'>Parler au bucheron</a>";
31
+			}
32
+			echo	"<a href='foret.php?position=2141'>Rebrousser chemin</a>";
33
+			?>
34
+			</td>
35
+			<td width="300">
36
+			<table border="0" cellspacing="0" cellpadding="0" align="center">
37
+				<tr>
38
+					<td background="images/bordure_01.gif" width="14" height="19">
39
+					</td>
40
+					<td background="images/bordure_02.gif" width="272" height="19">
41
+					</td>
42
+					<td background="images/bordure_03.gif" width="14" height="19">
43
+					</td>
44
+				</tr>
45
+				<tr>
46
+					<td background="images/bordure_04.gif" width="14" height="193">
47
+					</td>
48
+					<td width="272" height="193" align="center" valign="center">
49
+						<?php
50
+							echo "<img src='images/dessins/Maison_Bucheron.jpg' border ='0' width='272' height='193'>";
51
+							if($_SESSION['repas']==2){
52
+								echo "<div style='position:absolute;top:199;left:420'><img src='images/dessins/Maison_Bucheron_perso.png' border ='0' width='272' height='193'></div>";
53
+							}
54
+						?>
55
+					</td>
56
+					<td background="images/bordure_06.gif" width="14" height="193">
57
+					</td>
58
+				</tr>
59
+				<tr>
60
+					<td background="images/bordure_07.gif" width="14" height="18">
61
+					</td>
62
+					<td background="images/bordure_08.gif" width="3" height="18">
63
+					</td>
64
+					<td background="images/bordure_09.gif" width="14" height="18">
65
+					</td>
66
+				</tr>
67
+			</table>
68
+			</td>
69
+		</tr>
70
+	</table>
71
+	</td>
72
+	</tr>
73
+</table>
74
+</body>
75
+</html>
76
+<?php
77
+	mysql_close();
78
+?>