1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
| <?php
require("connexion.php");
$NumMois=$_REQUEST['NumMois'];
$date_an=$_REQUEST['An'];
?>
<html>
<head>
<title>Tarifs et disponibilités du gîte - Location de vacances, disponibilité et tarif - Vielle Adour</title>
<meta name="description" content="Tarifs du gite en fonction des périodes de location vacances scolaire et week end. Planning des disponibilités." />
<meta name="keywords" lang="fr" content="gite de france, hautes pyrénées, 65, location de vacances, station de ski, hébergement,3 épis, gite rural, location week-end, Tarbes, Lourdes, Pic du Midi, Bagnères de Bigorre, ski, Gavarnie, festival de Marciac" />
</head>
<!--Gîte-de-France-3-&eacutpis-hautes-pyr&eacutnés-65-->
<link rel= "STYLESHEET" type= "text/css" href="Presentation.css" >
<body>
<table class="Ajust">
<tr>
<td>
<div class="position">
<h1>Tarifs et disponibilités du gîte</h1>
<?php
echo "<form method='post' action='Tarifs-et-disponibilités-du-gîte.php?NumMois=$NumMois&An=$date_an'>";
?>
<a href="Gîte-de-France-3-&eacutpis-hautes-pyr&eacutnés-65.php"><IMG SRC="Bouton_accueil.jpg" class="bouton_menu"></a><a href="Gite-rural-hautes-pyrénées-65.php"><IMG SRC="Bouton_gite.jpg" class="bouton_menu"></a><?php echo"<a href='Tarifs-et-disponibilités-du-gîte.php?Num_Mois=$NumMois&An=$date_an'><IMG SRC='Bouton_dispo1.jpg' class='bouton_menu3'></a>"; ?><a href="activités-hautes-pyrénées-65.php"><IMG SRC="Bouton_activite.jpg" class="bouton_menu2"></a><a href="Contact-gîte-Hautes-Pyrénées-65.php"><IMG SRC="Bouton_contact.jpg" class="bouton_menu2"></a>
<fieldset>
<legend>Disponibilités</legend>
<div class="EnTete2">
<div class="annif"><img src="gite2.jpg"></img></a></div>
<span class="h2"><b>Calendrier des disponibilités</b></span>
<br>
<br>
<table border="0" width="400" align="center">
<tr>
<td width="200">
<span class="h1"><b>Mois:</b></span>
<?php
$resultat=mysql_query("SELECT * FROM Mois WHERE NumMois=$NumMois");
$mois = mysql_fetch_object($resultat);
$NumMois_select=$mois->NumMois;
$LibMois_select=$mois->LibMois;
echo "<select name='NumMois' ><option value=".$NumMois_select.">".$LibMois_select."</option>";
$resultat=mysql_query("SELECT * FROM Mois");
while ($mois = mysql_fetch_object($resultat))
{
$NumMois=$mois->NumMois;
$LibMois=$mois->LibMois;
// Affichage de la ligne
echo "<option value=".$NumMois.">".$LibMois." </option >";
}
echo "</select>";
?>
</td>
</tr>
<tr>
<td width="200">
<span class="h1"><b>Année:</b></span>
<?php
$date_an_select=$date_an;
echo "<select name='Annee' ><option value=".$date_an_select.">".$date_an_select."</option>";
//$selected='';
$date_an=date("Y");
for($i=0;$i <= 2;$i++)
{
echo "<option value=".$date_an.">".$date_an." </option >";
$date_an=$date_an+1;
}
echo "</select>";
?>
</td>
</tr>
<tr>
<td>
<input type="submit" name="submit" value="Valider">
</td>
</tr>
<td colspan="2">
</table>
<br>
</div>
</fieldset>
<fieldset>
<legend>Tarifs</legend>
<div class="EnTete2">
</div>
</fieldset>
</div>
<div class="Pied_page">
© 2013 site développé par Ordi@dom
</div>
</td>
</tr>
</table>
</body>
</html>
<?php
if (isset ($_POST) && (!empty($_POST['NumMois'])))
{
$NumMois=$_POST['NumMois'];$date_an=$_POST['Annee'];
//header('Location: Tarifs-et-disponibilités-du-gîte?NumMois='.$NumMois.'&An='.$date_an);
header('Location: /Tarifs-et-disponibilités-du-gîte.php?NumMois='.$NumMois.'&An='.$date_an);
}
?> |
Partager