Bonjour,
probléme de récupiration des variable en php méthode $_GET

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
 
<head>
 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 
<title>Ajax - PHP example</title>
 
</head>
 
 
 
<body>
 
 
 
<script language="javascript" type="text/javascript">
 
<!--
 
// Get the HTTP Object
 
function getHTTPObject(){
 
if (window.ActiveXObject) return new ActiveXObject("Microsoft.XMLHTTP");
 
else if (window.XMLHttpRequest) return new XMLHttpRequest();
 
else {
 
alert("Your browser does not support AJAX.");
 
return null;
 
}
 
}
 
 
 
// affichage
 
function affiche(){
 
if(httpObject.readyState == 4){
 
document.getElementById('cont').value = httpObject.responseText;
 
 
}
 
 
 
}
 
function verifnserie()
{
httpObject = getHTTPObject();
 
if (httpObject != null) {
 
httpObject.open("GET",'reserv1.php',true);
//----------------------------------------------------
 
nbr_ad = document.getElementById('nbr_ad').value; //alert(nbr_ad);
 
 
donnees = "nbr_ad="+nbr_ad;
 
 
httpObject.send(donnees);
 
 
}
}
 
var httpObject = null;
 
//-->
 
 
 
 
</script>
 
 
 
<form name="frm" >
<select onChange="verifnserie()" name="nbr_ad" id="nbr_ad" >
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
 
 
 
</form>
 
 
<div id="cont">
<?php if (isset($_GET['nbr_ad']))
 
echo var_dump($_GET['nbr_ad']);
 
?>
</div>
</body>
 
</html>
echo n'affiche rien malgré lorsque j' alert(nbr_ad); en js retourne le variable

Merci d'avance