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
| <form name="ThisForm">
<select name="List1" OnChange="setOption(this.form, this.selectedIndex)">
<option>4x4
<option>citadine
<option>luxueuse
</select><p>
<select name="List2" OnChange="this.form.ValueIn2.value=this.options[this.selectedIndex].value">
<option>
<option>
<option>
<option>
<option>
<option>_________________
</select>
</form>
<script language="javascript">
<!--
function setOption(form, index) {
for (var i = 0; i < form.List2.length; i++) {
form.List2.options[i].text = "";
form.List2.options[i].value = "";
}
if (index == 0) {
<?php
mysql_connect("localhost","root","");
mysql_select_db("voiture");
$ea=mysql_query("SELECT * FROM voiture WHERE categorie='4x4'");
while($eb=mysql_fetch_array($ea))
{
?>
for (var i = 0; i < form.List2.length; i++) {
form.List2.options[i].text = "<?php echo $eb['voiture']; ?>";
}
<?php
}
mysql_close();
?>
}
else if (index == 1) {
<?php
mysql_connect("localhost","root","");
mysql_select_db("voiture");
$ea=mysql_query("SELECT * FROM voiture WHERE categorie='citadine'");
while($eb=mysql_fetch_array($ea))
{
?>
for (var i = 0; i < form.List2.length; i++) {
form.List2.options[i].text = "<?php echo $eb['voiture']; ?>";
}
<?php
}
mysql_close();
?>
}
else if (index == 2) {
<?php
mysql_connect("localhost","root","");
mysql_select_db("voiture");
$ea=mysql_query("SELECT * FROM voiture WHERE categorie='luxueuse'");
while($eb=mysql_fetch_array($ea))
{
?>
for (var i = 0; i < form.List2.length; i++) {
form.List2.options[i].text = "<?php echo $eb['voiture']; ?>";
}
<?php
}
mysql_close();
?>
}
form.List2.selectedIndex = 0;
form.ValueIn2.value = form.List2.options[form.List2.selectedIndex].value;
}
//-->
</script> |
Partager