Forum Programmation.php envoi de tableau par header

Posté par  .
Étiquettes : aucune
0
23
nov.
2006
Bonjour, J'ai fais un petit script qui me permet de poster des informations par header :

$uri="/page.php";
$host="www.domaine.com";
$postdata="variable=1&tableau=".$_POST["tableau"];
$salida ="POST $uri HTTP/1.1\r\n";
$salida.="Host: $host\r\n";
$salida.="User-Agent: PHP Script\r\n";
$salida.="Content-Type: application/x-www-form-urlencoded\r\n";
$salida.="Content-Length: ".strlen($postdata)."\r\n";
$salida.="Cookie: log_internaute_id=".$_SESSION["log_internaute_id"]."\r\n";
$salida.="Connection: close\r\n\r\n";
$salida.=$postdata;
$da = fsockopen($host,$_SERVER['SERVER_PORT'], $errno, $errstr);
fputs($da,$salida);
fwrite($da, $salida);
$response="";
while (!feof($da))
$response.=fgets($da, 128);
$response=split("<!DOCTYPE",$response);
$header=$response[0];

Le problème que je rencontre c'est que mon tableau qui contient en fait un tableau Array ( [0] => 2 [1] => 0 [2] => 1 [3] => (…)