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,69 @@
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
+?>
9
+<html>
10
+<head>
11
+<title>Ville de Dragons</title>
12
+<link rel='stylesheet' href='Style.css' type='text/css'>
13
+</head>
14
+<body>
15
+<table border="0" height="100%" width="100%">
16
+	<tr>
17
+	<td valign="center">
18
+	<table border="0" cellspacing="0" cellpadding="0" align="center">
19
+		<tr>
20
+			<td width="600">
21
+			<table border="0" cellspacing="0" cellpadding="0" align="center">
22
+				<tr>
23
+					<td background="images/bordure_01.gif" width="14" height="19">
24
+					</td>
25
+					<td background="images/bordure_02.gif" width="500" height="19">
26
+					</td>
27
+					<td background="images/bordure_03.gif" width="14" height="19">
28
+					</td>
29
+				</tr>
30
+				<tr>
31
+					<td background="images/bordure_04.gif" width="14" height="353">
32
+					</td>
33
+					<td width="500" height="353" align="center" valign="center">
34
+						<?php
35
+							echo "<img src='images/dessins/mort.jpg' border ='0' width='500' height='353'>";
36
+						?>
37
+					</td>
38
+					<td background="images/bordure_06.gif" width="14" height="353">
39
+					</td>
40
+				</tr>
41
+				<tr>
42
+					<td background="images/bordure_07.gif" width="14" height="18">
43
+					</td>
44
+					<td background="images/bordure_08.gif" width="500" height="18">
45
+					</td>
46
+					<td background="images/bordure_09.gif" width="14" height="18">
47
+					</td>
48
+				</tr>
49
+			</table>
50
+			</td>
51
+		</tr>
52
+		<tr>
53
+			<td align="center">
54
+			<?php
55
+			echo "<p align='center'>Vous avez succomb�...</p>";
56
+			echo "<center><img src='images/fioriture.png'></center>";
57
+			echo "<a href='TraitementMort.php'>Recommencez depuis la derni�re sauvegarde...</a>";
58
+			?>
59
+			</td>
60
+		</tr>
61
+	</table>
62
+	</td>
63
+	</tr>
64
+</table>
65
+</body>
66
+</html>
67
+<?php
68
+	mysql_close()
69
+?>