Ragazzi mi servirebbe realizzare una pagina web che al suo caricamento invii una http post request. Girando sul web ho trovato questo codice:

/*
** The function:
*/

function PostRequest($url, $referer, $_data) {

// convert variables array to string:
$data = array();
while(list($n,$v) = each($_data)){
$data[] = "$n=$v";
}
$data = implode('&', $data);
// format --> test1=a&test2=b etc.

// parse the given URL
$url = parse_url($url);
if ($url['scheme'] != 'http') {
die('Only HTTP request are supported !');
}

// extract host and path:
$host = $url['host'];
$path = $url['path'];

// open a socket connection on port 80
$fp = fsockopen($host, 80);

// send the request headers:
fputs($fp, "POST $path HTTP/1.1\r\n");
fputs($fp, "Host: $host\r\n");
fputs($fp, "Referer: $referer\r\n");
fputs($fp, "Content-type: application/x-www-form-urlencoded\r\n");
fputs($fp, "Content-length: ". strlen($data) ."\r\n");
fputs($fp, "Connection: close\r\n\r\n");
fputs($fp, $data);

$result = '';
while(!feof($fp)) {
// receive the results of the request
$result .= fgets($fp, 128);
}

// close the socket connection:
fclose($fp);

// split the result header from the content
$result = explode("\r\n\r\n", $result, 2);

$header = isset($result[0]) ? $result[0] : '';
$content = isset($result[1]) ? $result[1] : '';

// return as array:
return array($header, $content);
}



/*
** The example:
*/

// submit these variables to the server:
$data = array(
'test' => 'foobar',
'okay' => 'yes',
'number' => 2
);

// send a request to example.com (referer = jonasjohn.de)
list($header, $content) = PostRequest(
"http://www.example.com/",
"http://www.jonasjohn.de/",
$data
);

// print the result of the whole request:
print $content;

// print $header; --> prints the headers

Non sono però riuscito a capirne il funzionamento... o meglio ci ho provato operando nel seguente modo:

- Ho creato una pagina PHP e nell'header ho dichiarato la funzione
function PostRequest($url, $referer, $_data) {
<?php
// convert variables array to string:
$data = array();
while(list($n,$v) = each($_data)){
$data[] = "$n=$v";
................
...............
// return as array:
return array($header, $content);
}?>

- Poi nel body ho richiamato la funzione
<?php
PostRequest("http://www.SITO.COM", "http://www.SITO.org/PATH/SCRIPT.php?id=0000", "CORPO_DELLA_REQUEST");
?>

- Ho salvato la pagina chiamandola prova.php e l'ho caricata in un mio spazio web. Dopodichè ho avviato la pagina e mi dà un'errore dicendomi che il parametro _data passato alla funzione non è un'array...

Non mi è chiaro il funzionamento di questa funzione; qualcuno può aiutarmi su come inviare una http post request da una pagina web? Grazie

Ciao a tutti