Debug...

Paramètres envoyés par le formulaire (tableau \$_GET):

"; print_r($_GET); echo "
"; echo "

Paramètres envoyés par le formulaire (tableau \$_POST):

"; print_r($_POST); echo "
"; echo "

Paramètres envoyés par le formulaire (variable \$HTTP_RAW_POST_DATA):

"; echo $HTTP_RAW_POST_DATA; echo "
"; echo "

Paramètres envoyés par le formulaire (file_get_contents(\"php://input\")):

"; $postdata = file_get_contents("php://input"); echo $postdata; ?>