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
| <!-- LA PREMIERE CHOSE A AFFICHER ET LE DOCTYPE ENSUITE LE <HTML> PUIS LE <HEAD> ET ENFIN LE <BODY> -->
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<!-- EXEMPLE DE DOCTYPE -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Listes Liees +Module+Matiere</title>
<script type='text/javascript'>
<!--
function getXhr(){
var xhr = null;
if(window.XMLHttpRequest) // Firefox et autres
xhr = new XMLHttpRequest();
else if(window.ActiveXObject){ // Internet Explorer
try {
xhr = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
}
else { // XMLHttpRequest non supporté par le navigateur
alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest...");
xhr = false;
}
return xhr;
}
/**
* Méthode qui sera appelée sur le click du bouton
*/
function go(){
var xhr = getXhr();
// On défini ce qu'on va faire quand on aura la réponse
xhr.onreadystatechange = function(){
// On ne fait quelque chose que si on a tout reçu et que le serveur est ok
if(xhr.readyState == 4 && xhr.status == 200){
leselect = xhr.responseText;
// On se sert de innerHTML pour rajouter les options a la liste
document.getElementById('prod').innerHTML = leselect;
}
}
// Ici on va voir comment faire du post
xhr.open("POST","prod.php",true);
// ne pas oublier ça pour le post
xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
// ne pas oublier de poster les arguments
// ici, l'id de Module
sel = document.getElementById('four');
idfour = sel.options[sel.selectedIndex].value;
alert(idFour);
xhr.send("idfour="+idfour);
}
-->
</script>
<!-- LA BALISE STYLE DE PREFERENCE DANS LE HEAD ET MIEUX DANS UN FICHIER EXTERNE
<link rel="stylesheet" type="text/css" href="design.css" />
-->
<style type="text/css">
td{font-family:verdana,sans-serif; font-size:8pt;color:#333333}
td select { width : 300px;}
body{font-family:verdana,sans-serif; font-size:11pt;color:#333333;font-weight:bold; background-color : #EEEEDD;}
#page{ width : 900px;}
.centrer { margin : auto; left : 50%; }
p { text-align : center; }
</style>
</head>
<!-- ATTENTION ON NE DECLARE QU UN SEUL BODY -->
<!-- <body> -->
<!-- ON NE FERME QU UNE FOIS LE HEAD -->
<!-- </head> -->
<body>
<!-- LA BALISE CENTER EST OBSOLETE. IL FAUT UTILISER UNE DIV EST LA CENTRER -->
<!-- <center> -->
<div id="page" class="centrer">
<p>quel produits et quelle clientes voulez vous choisir?</p>
<!-- UN FORM COMPREND AU MINIMUM UN ACTION ET UNE METHODE (ON RECUPERE AVEC $_POST sinon $_GET) -->
<form action="mapage.php" method="post">
<!-- POUR UTILISER UN TABLEAU IL FAUT LE METTRE DANS DES BALISE <TABLE> -->
<table class="centrer">
<tr>
<td>
<label>Fournisseur :</label>
</td>
<td>
<select name="four" id="four" onchange="go()">
<option value='-1'>Aucun</option>
<?
mysql_connect("localhost","root","");
mysql_select_db("Command");
$res = mysql_query("SELECT * FROM fournisseur ORDER BY nomfour");
while($row = mysql_fetch_assoc($res)){
echo "<option value='".$row["idfour"]."'>".$row["nomfour"]."</option>";
}
?>
</select>
</td>
</tr>
<tr>
<td>
<label>Produits :</label>
</td>
<td>
<!-- UN DIV INLINE EST UN : SPAN -->
<!-- <div id="prod" style="display:inline"> -->
<span id='prod'>
<select name='prod'>
<option value='-1'>Choisir un produit</option>
</select>
</span>
</td>
</tr>
<tr>
<td>
<p>
<label>Localisation :</label>
</p>
</td>
<td>
<?
mysql_connect("localhost","root","");
mysql_select_db("Command");
$res = mysql_query("SELECT Distinct Localisation FROM client ");
echo"<select name=\"Loc\" id=\"Loc\">";
while($row = mysql_fetch_assoc($res)){
echo "<option value='".$row["Localisation"]."'>".$row["Localisation"]."</option>";
}
echo "</select> ";
?>
</td>
</tr>
<tr>
<td>
<label>Clients :</label>
</td>
<td>
<!-- ON NE PEUT PAS METTRE DEUX FOIS LES MEMES IDENTIFIANTS -->
<!--<select name="Nom" id="client">-->
<?
mysql_connect("localhost","root","");
mysql_select_db("Command");
$res = mysql_query("SELECT Distinct SortClt FROM client ");
echo"<select name=\"client\" id=\"client\">";
while($row = mysql_fetch_assoc($res)){
echo "<option value='".$row["SortClt"]."'>".$row["SortClt"]."</option>";
}
echo "</select> ";
?>
</td>
</tr>
<tr>
<!-- PERMET DE METTRE LA COLONNE QUI PREND DEUX DOLONNES -->
<td>
<p><input type="submit" name="monBouton" value="Afficher"></p>
</td>
</tr>
</table>
</form>
</div>
</body>
</html> |
Partager