Your IP : 216.73.216.162


Current Path : /home/x/b/o/xbodynamge/www/reservation/dev/
Upload File :
Current File : /home/x/b/o/xbodynamge/www/reservation/dev/confirmer_annuler.php

<?php
include_once('./inc/init.inc.php');
include_once('./inc/secure.inc.php');

setlocale (LC_TIME, 'fr_FR.utf8','fra'); 


$sql = "SELECT * from reservation_client where id =".$_SESSION['id_client']; 
$req = mysql_query($sql) or die('Erreur SQL !'.mysql_error()); 
$client = mysql_fetch_assoc($req);


$sql = "SELECT *, (select salle from reservation_salle where id=reservation_reservation.id_salle) as salle from reservation_reservation where id =".$_POST['id']; 
$req = mysql_query($sql) or die('Erreur SQL !'.mysql_error()); 
$reservation = mysql_fetch_assoc($req);


?>

<html>
<head>
<link rel="stylesheet" type="text/css" href="style_client.css">
</head>
<body>

<div class="container_maintable">

<span style="float: right;">
<form style="display: inline; margin: 0px;padding: 0px;" action="fiche_client.php" method="POST"><input type="submit" class="normal_bouton" value="&nbsp;&nbsp;&nbsp;Mise &agrave; jour de vos donn&eacute;es&nbsp;&nbsp;&nbsp;"></form>
<form style="display: inline; margin: 0px;padding: 0px;" action="logout.php" method="POST"><input type="submit" class="normal_bouton" value="&nbsp;&nbsp;&nbsp;D&eacute;connexion&nbsp;&nbsp;&nbsp;"></form></span><br>

<table class="main">

<form action="annuler.php" method="POST">


<?php include_once('./inc/header.php');?>




<tr class="calendrier_alternate1">
	
	<td style="text-align:left; vertical-align:top;padding-left:50px">
	
	<div class="titre">Confirmation de l'annulation d'une s&eacute;ance :</div><br>
	<br>
	Ou : <?php echo $reservation['salle'] ?><br>
	Date : <?php echo $reservation['date'] ?><br>
	Heure de d&eacute;but : <?php echo $reservation['heure_deb'] ?><br>
	S&eacute;ance : <?php echo $reservation['type_seance'] ?><br> 
	<br>
	Veuillez confirmer que vous d&eacute;sirez bien annuler cette r&eacute;servation.
	<br>
	<input type="hidden" name="id" value= "<?php echo $_POST['id'];?>">
	<center><input type="submit" class="submit_bouton" value="Confirmer l'annulation"></center>

	</td>
	
</tr>


</form>


</table>
</div>
</body>
</html>