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,112 @@
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
+?>
7
+<html>
8
+<head>
9
+<title>Ville de Dragons</title>
10
+<link rel='stylesheet' href='Style.css' type='text/css'>
11
+</head>
12
+<body bgcolor="#000000">
13
+<table border="0" cellpadding="0" cellspacing="0" align="center" >
14
+<tr>
15
+	<td background="images/parchemin3_01.jpg" width="32" height="38">
16
+	</td>
17
+	<td background="images/parchemin3_02.jpg" width="716" height="38">
18
+	</td>
19
+	<td background="images/parchemin3_03.jpg" width="150" height="38">
20
+	</td>
21
+	<td background="images/parchemin3_04.jpg" width="34" height="38">
22
+	</td>
23
+</tr>
24
+<tr>
25
+	<td background="images/parchemin3_05.jpg" width="32" height="535">
26
+	</td>
27
+	<td background="images/parchemin3_06.jpg" width="716" height="535">
28
+
29
+	<table border="0" cellspacing="0" cellpadding="0" align="center">
30
+		<tr>
31
+			<td width="400">
32
+			<?php
33
+			echo "<br><br><a href='tailleur.php'>Quitter le tailleur</a>";
34
+			?>
35
+			</td>
36
+			<td width="300">
37
+			<table border="0" cellspacing="0" cellpadding="0" align="center">
38
+				<tr>
39
+					<td background="images/bordure_01.gif" width="14" height="19">
40
+					</td>
41
+					<td background="images/bordure_02.gif" width="137" height="19">
42
+					</td>
43
+					<td background="images/bordure_03.gif" width="14" height="19">
44
+					</td>
45
+				</tr>
46
+				<tr>
47
+					<td background="images/bordure_04.gif" width="14" height="192">
48
+					</td>
49
+					<td width="197" height="279" align="center" valign="center">
50
+						<?php
51
+							echo "<img src='images/dessins/P_tailleur.jpg' border ='0' width='197' height='279'>";
52
+						?>
53
+					</td>
54
+					<td background="images/bordure_06.gif" width="14" height="192">
55
+					</td>
56
+				</tr>
57
+				<tr>
58
+					<td background="images/bordure_07.gif" width="14" height="18">
59
+					</td>
60
+					<td background="images/bordure_08.gif" width="137" height="18">
61
+					</td>
62
+					<td background="images/bordure_09.gif" width="14" height="18">
63
+					</td>
64
+				</tr>
65
+			</table>
66
+			</td>
67
+		</tr>
68
+	</table>
69
+
70
+	</td>
71
+	<td width="100" height="535">
72
+	<table border="0" cellspacing="0" cellpadding="0" align="center">
73
+		<tr>
74
+			<td background="images/parchemin3_07.jpg" width="150" height ="107"></td>
75
+		</tr>
76
+		<tr>
77
+			<td background="images/parchemin3_09.jpg" width="150" height="428" align="center" valign="top">
78
+			<?php include('liens.html') ?>
79
+			</td>
80
+		</tr>
81
+	</table>
82
+	</td>
83
+	<td background="images/parchemin3_08.jpg" width="34" height ="535">
84
+	</td>
85
+</tr>
86
+<tr>
87
+	<td background="images/parchemin3_10.jpg" width="32" height="45">
88
+	</td>
89
+	<td background="images/parchemin3_11.jpg" width="716" height="45">
90
+	</td>
91
+	<td background="images/parchemin3_12.jpg" width="150" height="45">
92
+	</td>
93
+	<td background="images/parchemin3_13.jpg" width="34" height="45">
94
+	</td>
95
+</tr>
96
+<tr>
97
+	<td background="images/parchemin3_14.jpg" width="32" height="150">
98
+	</td>
99
+	<td background="images/parchemin3_15.jpg" width="716" height="150">
100
+	</td>
101
+	<td background="images/parchemin3_16.jpg" width="150" height="150">
102
+	</td>
103
+	<td background="images/parchemin3_17.jpg" width="33" height="150">
104
+	</td>
105
+</tr>
106
+
107
+</table>
108
+</body>
109
+</html>
110
+<?php
111
+	mysql_close();
112
+?>