croisementDroite.php
4a503405
 <?php
 //creation de la session ... inclusion du code ... verification de la session connect�e...
 session_start();
 include ('fonctions.php');
 check_session();
 include ('fonctionsDenTete.php');
 ?>
 <html>
 <head>
 <title>Ville de Dragons</title>
 <link rel='stylesheet' href='Style.css' type='text/css'>
 </head>
 <body>
 <?php
 	AfficheBarreDEtat(0);
 ?>
 <table border="0" height="100%" width="100%">
 	<tr>
 	<td valign="center">
 	<table border="0" cellspacing="0" cellpadding="0" align="center">
 		<tr>
 			<td width="400">
 			<?php
 			echo "Vous voici dans la partie Est du village, il s'y trouve une �glise respectable o� le pr�tre sert la messe trois fois par jour, un forgeron n'ayant pas peur du vide ainsi que la maison du propri�taire terrien de ce petit hameau, il lui arrive parfois de donner du travail aux nouveaux arrivants...";
 			$rencontre= rand(1,5);
 			if ($rencontre==5){
 				$_SESSION['pagePrecedente'] = "croisement.php";
 				echo "<p align='left'>Vous croisez un garde, il se tient devant vous raide comme un baton dans son armure int�grale, la garde sur l'�p�e en vous d�visageant...</p>";
 			}
 			echo "<center><img src='images/fioriture.png'></center>";
 			if ($rencontre==5 && $_SESSION['nudite']==1){
 				echo "<a href='D_Gardes.php'>[Suite]</a>";
 			}else{
 				if($rencontre == 5){
 					echo "<a href='D_Gardes.php'>Regarder le garde fixement...</a><br>";
 				}
 			echo	"<a href='taverne.php'>Retourner � la taverne</a>"
 				."<br><a href='Eglise.php'>Allez � l'�glise</a>"
 				."<br><a href='Forgeron.php'>Allez chez le forgeron</a>"
 				."<br><a href='maisonTravailleur.php'>Allez chez le maitre des ouvriers</a>"
 				."<br><a href='foret.php'>Rentrer dans la for�t</a>";
 			echo "<br><a href='croisement.php'>Retourner au croisement</a>";
 			}
 			?>
 			</td>
 			<td width="300">
 			<table border="0" cellspacing="0" cellpadding="0" align="center">
 				<tr>
 					<td background="images/bordure_01.gif" width="14" height="19">
 					</td>
 					<td background="images/bordure_02.gif" width="272" height="19">
 					</td>
 					<td background="images/bordure_03.gif" width="14" height="19">
 					</td>
 				</tr>
 				<tr>
 					<td background="images/bordure_04.gif" width="14" height="193">
 					</td>
 					<td width="272" height="193" align="center" valign="center">
 						<?php
 							echo "<img src='images/dessins/croisementDroite.jpg' border ='0' width='272' height='193'>";
 						?>
 					</td>
 					<td background="images/bordure_06.gif" width="14" height="193">
 					</td>
 				</tr>
 				<tr>
 					<td background="images/bordure_07.gif" width="14" height="18">
 					</td>
 					<td background="images/bordure_08.gif" width="3" height="18">
 					</td>
 					<td background="images/bordure_09.gif" width="14" height="18">
 					</td>
 				</tr>
 			</table>
 			</td>
 		</tr>
 	</table>
 	</td>
 	</tr>
 </table>
 </body>
 </html>
 <?php
 	mysql_close();
 ?>