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
| <p align="left">
<form id="form11" method="post" action="secteurProcessor.php">
<div align="left">
<?
//Recherche de la liste des villes
$sqlQuery =
" SELECT VILLE_NAME , VILLE_ID ".
" FROM VILLE_LIST ".
" WHERE VILLE_ID = 1";
$req = mysql_query($sqlQuery);
checkSqlError($sqlQuery);
while($data = mysql_fetch_array ($req)) {?>
<input type="hidden" name="ville" value="Clermont-Ferrand">
</div>
</form>
<a href='/<? echo($data['VILLE_NAME']) ?>/accueil.html' onclick='document.getElementById("form11").submit()'><? echo($data['VILLE_NAME']) ?></a>
<br> <? } ?></p>
<p align="left">
<form id="form12" method="post" action="secteurProcessor.php">
<div align="left">
<?
//Recherche de la liste des villes
$sqlQuery =
" SELECT VILLE_NAME , VILLE_ID ".
" FROM VILLE_LIST ".
" WHERE VILLE_ID = 2";
$req2 = mysql_query($sqlQuery);
checkSqlError($sqlQuery);
while($data2 = mysql_fetch_array ($req2)) {?>
<input type="hidden" name="ville" value="Bordeaux">
</div>
</form>
<a href='/<? echo($data2['VILLE_NAME']) ?>/accueil.html' onclick='document.getElementById("form12").submit()'><? echo($data2['VILLE_NAME']) ?></a>
<br> <? } ?></p>
<p align="left">
<form id="form13" method="post" action="secteurProcessor.php">
<div align="left">
<?
//Recherche de la liste des villes
$sqlQuery =
" SELECT VILLE_NAME , VILLE_ID ".
" FROM VILLE_LIST ".
" WHERE VILLE_ID = 3";
$req3 = mysql_query($sqlQuery);
checkSqlError($sqlQuery);
while($data3 = mysql_fetch_array ($req3)) {?>
<input type="hidden" name="ville" value="Paris">
</div>
</form>
<a href='/<? echo($data3['VILLE_NAME']) ?>/accueil.html' onclick='document.getElementById("form13").submit()'><? echo($data3['VILLE_NAME']) ?></a>
<br> <? } ?></p>
<p align="left">
<form id="form14" method="post" action="secteurProcessor.php">
<div align="left">
<?
//Recherche de la liste des villes
$sqlQuery =
" SELECT VILLE_NAME , VILLE_ID ".
" FROM VILLE_LIST ".
" WHERE VILLE_ID = 4";
$req4 = mysql_query($sqlQuery);
checkSqlError($sqlQuery);
while($data4 = mysql_fetch_array ($req4)) {?>
<input type="hidden" name="ville" value="Marseille">
</div>
</form>
<a href='/<? echo($data4['VILLE_NAME']) ?>/accueil.html' onclick='document.getElementById("form14").submit()'><? echo($data4['VILLE_NAME']) ?></a>
<br> <? } ?></p> |
Partager