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,64 @@
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
+<body>
9
+<?php
10
+	AfficheBarreDEtat(0);
11
+?>
12
+<table border="0" height="100%" width="100%">
13
+	<tr>
14
+	<td valign="center">
15
+	<table border="0" cellspacing="0" cellpadding="0" align="center">
16
+		<tr>
17
+			<td width="400">
18
+			<?php
19
+			echo "<p align='left'>Vous voici devant l'arbre de la connaissance...</p>";
20
+			echo "<center><img src='images/fioriture.png'></center>";
21
+			echo "<a href='foret.php?position=1171'>Rebrousser chemin</a>";
22
+			?>
23
+			</td>
24
+			<td width="300">
25
+			<table border="0" cellspacing="0" cellpadding="0" align="center">
26
+				<tr>
27
+					<td background="images/bordure_01.gif" width="14" height="19">
28
+					</td>
29
+					<td background="images/bordure_02.gif" width="137" height="19">
30
+					</td>
31
+					<td background="images/bordure_03.gif" width="14" height="19">
32
+					</td>
33
+				</tr>
34
+				<tr>
35
+					<td background="images/bordure_04.gif" width="14" height="192">
36
+					</td>
37
+					<td width="137" height="192" align="center" valign="center">
38
+						<?php
39
+							echo "<img src='images/dessins/foret/arbredelaconnaissance.jpg' border='0' width='137' height='192'>";
40
+						?>
41
+					</td>
42
+					<td background="images/bordure_06.gif" width="14" height="192">
43
+					</td>
44
+				</tr>
45
+				<tr>
46
+					<td background="images/bordure_07.gif" width="14" height="18">
47
+					</td>
48
+					<td background="images/bordure_08.gif" width="137" height="18">
49
+					</td>
50
+					<td background="images/bordure_09.gif" width="14" height="18">
51
+					</td>
52
+				</tr>
53
+			</table>
54
+			</td>
55
+		</tr>
56
+	</table>
57
+	</td>
58
+	</tr>
59
+</table>
60
+</body>
61
+</html>
62
+<?php
63
+	mysql_close()
64
+?>
0 65
\ No newline at end of file