1 | 1 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,86 @@ |
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 |
+<?php |
|
16 |
+ AfficheBarreDEtat(0); |
|
17 |
+?> |
|
18 |
+<table border="0" height="100%" width="100%"> |
|
19 |
+ <tr> |
|
20 |
+ <td valign="center"> |
|
21 |
+ <table border="0" cellspacing="0" cellpadding="0" align="center"> |
|
22 |
+ <tr> |
|
23 |
+ <td width="400"> |
|
24 |
+ <?php |
|
25 |
+ echo "<p align='left'>Vous foulez les pieds d'un chemin sinueux se trouvant autour d'une fontaine, un banc se trouve sur le chemin sur la gauche,</p><p align='left'> Il doit �tre assez grand pour contenir une personne, pensez-vous.</p>"; |
|
26 |
+ if($_SESSION['repas']==3){ |
|
27 |
+ echo "<p align='left'>Vous regardez autour de vous et ne voyez personne dans les environs,surtout pas un garde...Une petite voix vous siffle a l'oreille de faire ''attention tout de m�me''..</p>"; |
|
28 |
+ }else{ |
|
29 |
+ echo "<p align='left'>Vous regardez autour de vous et voyez que le garde fait sa garde"; |
|
30 |
+ if($_SESSION['repas']==0){ |
|
31 |
+ echo " matinale"; |
|
32 |
+ }else if($_SESSION['repas']==1){ |
|
33 |
+ echo "du d�jeuner"; |
|
34 |
+ }else{ |
|
35 |
+ echo "du soir"; |
|
36 |
+ } |
|
37 |
+ echo ". Ce doit pas �tre le moment de faire une sieste,pensez vous...</p>"; |
|
38 |
+ } |
|
39 |
+ echo "<p align='left'>Un peu plus loin le chemin continue vers une grande porte qui n'as pas l'air d'�tre ouverte souvent.</p><p align='left>Peut �tre que c'est une grange pour la nourriture, la grange du propri�taire des terrains.</p><p align='left'>Sur la gauche de cette porte se tient l'entr�e vers une partie tortueuse de la ville.</p>" |
|
40 |
+ echo "<center><img src='images/fioriture.png'></center>"; |
|
41 |
+ echo "<a href='arrivee.php'>Sortir du parc en direction de la taverne</a>" |
|
42 |
+ ."<br><a href='dormir.php'>S'endormir sur un banc</a>" |
|
43 |
+ ."<br><a href='sortieParc.php'>Sortir du parc par l'autre chemin...</a>"; |
|
44 |
+ ?> |
|
45 |
+ </td> |
|
46 |
+ <td width="300"> |
|
47 |
+ <table border="0" cellspacing="0" cellpadding="0" align="center"> |
|
48 |
+ <tr> |
|
49 |
+ <td background="images/bordure_01.gif" width="14" height="19"> |
|
50 |
+ </td> |
|
51 |
+ <td background="images/bordure_02.gif" width="272" height="19"> |
|
52 |
+ </td> |
|
53 |
+ <td background="images/bordure_03.gif" width="14" height="19"> |
|
54 |
+ </td> |
|
55 |
+ </tr> |
|
56 |
+ <tr> |
|
57 |
+ <td background="images/bordure_04.gif" width="14" height="193"> |
|
58 |
+ </td> |
|
59 |
+ <td width="272" height="193" align="center" valign="center"> |
|
60 |
+ <?php |
|
61 |
+ echo "<img src='images/dessins/parc.jpg' border ='0' width='272' height='193'>"; |
|
62 |
+ ?> |
|
63 |
+ </td> |
|
64 |
+ <td background="images/bordure_06.gif" width="14" height="193"> |
|
65 |
+ </td> |
|
66 |
+ </tr> |
|
67 |
+ <tr> |
|
68 |
+ <td background="images/bordure_07.gif" width="14" height="18"> |
|
69 |
+ </td> |
|
70 |
+ <td background="images/bordure_08.gif" width="3" height="18"> |
|
71 |
+ </td> |
|
72 |
+ <td background="images/bordure_09.gif" width="14" height="18"> |
|
73 |
+ </td> |
|
74 |
+ </tr> |
|
75 |
+ </table> |
|
76 |
+ </td> |
|
77 |
+ </tr> |
|
78 |
+ </table> |
|
79 |
+ </td> |
|
80 |
+ </tr> |
|
81 |
+</table> |
|
82 |
+</body> |
|
83 |
+</html> |
|
84 |
+<?php |
|
85 |
+ mysql_close(); |
|
86 |
+?> |