Bonsoir, je voudrais récuperer la valeur de mon input "kouk" dans le data.php mais je n'y arrive pas après moulte tentatives.

voici ma page :

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
<?
foreach ($_POST as $key => $value) $$key = addslashes($value);
foreach ($_GET as $key => $value) $$key = addslashes($value);
?><!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" xml:lang="en" dir="ltr" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<script language="JavaScript">
	function submitForm(f)
	{ 
 
		document.getElementById("zone").innerHTML=null;
 
		if(window.XMLHttpRequest)
			req = new XMLHttpRequest(); 
		else if (window.ActiveXObject)
			req  = new ActiveXObject(Microsoft.XMLHTTP); 
 
		req.open("POST", "data.php", true); 
		req.onreadystatechange = function anonymous()
		{ 
			document.getElementById("zone").innerHTML="Recherche de la planète";
			if(req.readyState == 4)
			{
				if(req.status == 200)
				{
					document.getElementById("zone").innerHTML=req.responseText;	
				}	
				else	
				{
                    document.getElementById("zone").innerHTML = "Received:" + xhr.responseText;					}	
			} 
		}; 
		req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); 
		req.send(null); 
}
</script>
	</head>
 
	<body>
		<FORM name="ajax" action="" method="">
 
  <p>
       <INPUT type="text" value="pouet" name="kouk" id="kouk">
 <INPUT type="BUTTON" value="Submit"  ONCLICK="submitForm(this.form)">
  </p>
  <p>
<div id="zone">
    ... un texte à remplacer...
 </div> </p>
</FORM><a href="javascript:">ici</a>
	</body>
</html>
Voici ma page data.php

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
<?
foreach ($_POST as $key => $value) $$key = addslashes($value);
foreach ($_GET as $key => $value) $$key = addslashes($value);
 
header('Content-type: text/html; charset=iso-8859-1');
echo('salut ! '.$kouk.'');
?>
merci