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,70 @@
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 source de la for�t...";
25
+			echo "<center><img src='images/fioriture.png'></center>";
26
+			echo	"<a href='foret.php?position=171'>Rebrousser chemin</a>"
27
+				."<br><a href='source.php'>Boire � la source...</a>";
28
+			?>
29
+			</td>
30
+			<td width="300">
31
+			<table border="0" cellspacing="0" cellpadding="0" align="center">
32
+				<tr>
33
+					<td background="images/bordure_01.gif" width="14" height="19">
34
+					</td>
35
+					<td background="images/bordure_02.gif" width="272" height="19">
36
+					</td>
37
+					<td background="images/bordure_03.gif" width="14" height="19">
38
+					</td>
39
+				</tr>
40
+				<tr>
41
+					<td background="images/bordure_04.gif" width="14" height="193">
42
+					</td>
43
+					<td width="272" height="193" align="center" valign="center">
44
+						<?php
45
+							echo "<img src='images/dessins/foret/clairiere.jpg' border ='0' width='272' height='193'>";
46
+						?>
47
+					</td>
48
+					<td background="images/bordure_06.gif" width="14" height="193">
49
+					</td>
50
+				</tr>
51
+				<tr>
52
+					<td background="images/bordure_07.gif" width="14" height="18">
53
+					</td>
54
+					<td background="images/bordure_08.gif" width="3" height="18">
55
+					</td>
56
+					<td background="images/bordure_09.gif" width="14" height="18">
57
+					</td>
58
+				</tr>
59
+			</table>
60
+			</td>
61
+		</tr>
62
+	</table>
63
+	</td>
64
+	</tr>
65
+</table>
66
+</body>
67
+</html>
68
+<?php
69
+	mysql_close();
70
+?>