bonjour j'ai mon formulaire dans jj.php et dans action.php j'affiche print_r($_POST) ,
le problème c'est que je n'ai rien : Array ( )

voici les fichiers php

jj.php :
Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
<html>
<head>
</head>
<body>
<form id ="frm_geom" action="action.php"  method="post"  >
	<textarea id="stockexportkml"   style="width:95%;height:400px;background-color:#FBE5EB;overflow:auto">Le contenu par défaut se place ici.</textarea>
 <button type="submit"  >Submit</button>
</form>
</body>
</html>


fichier action.php :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
<?php
print_r($_POST) ;
?>

Merci d'avance