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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
| <!DOCTYPE html>
<?php header('Content-Type:text/html; charset=UTF-8'); ?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<link rel="stylesheet" href="stage.css">
<script>
function showUser(str) {
if (str == "Choisissez un domaine") {
document.getElementById("txtHint").innerHTML = "";
return;
} else {
if (window.XMLHttpRequest) {
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
} else if (window.ActiveXObject){
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch(e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
catch(e) {
xmlhttp = false;
}
}
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.getElementById("txtHint").innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("GET","test.php?q="+str,true);
xmlhttp.send();
}
}
</script>
</head>
<body>
<?php
// On se connecte à MySQL
$bdd = new PDO('mysql:host=localhost;dbname=stage;charset=utf8', 'root', '');
// Si tout va bien, on peut continuer
// On récupère tout le contenu de la table jeux_video
$domaine = $bdd->query('SELECT DISTINCT Domaine FROM feuille1');
$ville = $bdd->query('SELECT DISTINCT Ville FROM feuille1');
// On affiche chaque entrée une à une
?>
<div class="intro">
<p>Pour vous aider dans votre recherche d'un lieu de stage, vous pouvez consulter les lieux de stages des années précédentes.
<br />
Deux choix de tri sont possibles : par domaine d'activité ou par lieux géographiques</p>
</div>
<br />
<script>
$(function() {
$( "button" )
.button()
.click(function( event ) {
event.preventDefault();
});
});
</script>
<div class="center-wrapper">
<button id = "choix">Trier par Domaines</button>
<button id = "ville">Trier par villes</button>
</div>
<br />
<div class="form" >
<form>
<select id="Domaines">
<option>Choisissez un domaine</option>
<?php
while ($donnees = $domaine->fetch())
{
?>
<option>
<?php
echo $donnees['Domaine'];
}
$domaine->closeCursor();
?>
</option>
</select>
</form>
<form>
<select id="Villes">
<option>Choisissez une ville</option>
<?php
while ($donnees = $ville->fetch())
{
?>
<option>
<?php
echo $donnees['Ville'] ;
}
$ville->closeCursor();
?>
</option>
</select>
</form>
</div>
<br />
<div id="txtHint"><b>Person info will be listed here...</b></div>
<script>
$("select").hide();
$("div#txtHint").hide();
$(":button#choix").click(function (){
$("#Domaines").show();
$(":button#ville").hide();
$("div").show();
});
$(":button#ville").click(function (){
$("#Villes").show();
$(":button#choix").hide();
$("div").show();
});
</script>
<script>
$( "#Domaines" ).change( function () {
var recup = "";
$( "#Domaines option:selected" ).each(function(){
recup += $(this).text();
});
showUser(recup);
}).change();
$( "#Villes" ).change( function () {
var recup = "";
$( "#Villes option:selected" ).each(function(){
recup += $(this).text();
});
showUser(recup);
}).change();
</script>
<br>
<div class="center-wrapper">
<button id ="reset">Faire une nouvelle recherche</button>
</div>
<script>
$(":button#reset").click(function (){
$("select").hide();
$("div#txtHint").hide();
$(":button#ville").show();
$(":button#choix").show();
$("select").each(function(){
$(this).prop('selectedIndex',0)
});
showUser("Choisissez un domaine");
});
</script>
</body>
</html> |
Partager