Problemi hardware, installazione driver,
blocco popup, software gratuiti, protezione virus,
antispam, sicurezza, errori Windows, Linux, script, grafica.


  Reply to this topicStart new topicStart Poll

> Inviare HTTP POST REQUEST da pagina web, in php
Molok
Inviato il: Sabato, 2008-Ott-11, 03:36
Quote Post




Nuovo Helpiniano
*

Gruppo: Membri 04
Messaggi: 18
Utente Nr.: 148
Iscritto il: 2004-Dic-06



Salve ragazzi, mi servirebbe realizzare una pagina web che al suo caricamento invii una http post request della quale ho tutti i dati (insomma ho il pacchetto sniffato contenente tutto ciò che serve). E' possibile ciò?

Girando sul web ho trovato questo codice:

CODE
/*
** 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

CODE
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

CODE
<?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

PMEmail Poster
Top
Alexander
Inviato il: Domenica, 2008-Ott-12, 04:09
Quote Post




Amministratore
**********

Gruppo: Admin
Messaggi: 2.630
Utente Nr.: 2
Iscritto il: 2001-Gen-01

Tournaments Won: 1



Ecco un'utile guida che può fare al caso tuo:
http://php.html.it/articoli/leggi/858/php-socket-e-http/1/

PMEmail PosterUsers WebsiteMSN
Top
Utenti totali che stanno leggendo la discussione: 1 (1 Visitatori e 0 Utenti Anonimi)
Gli utenti registrati sono 0 :

Topic Options Reply to this topicStart new topicStart Poll

 




[ Script Execution time: 0.0639 ]   [ 16 queries used ]   [ GZIP Abilitato ]

Sponsor: Adsl - Proverbi - Siti web e grafica - Salento vacanze - Scambio Visite - Assistenzafree - VBCPortal.eu - Località Sciistiche - Internet Italiano - Calcio serie A - Posizionamento Siti Web - Crea blog gratis - Annunci Gratuiti


Grafica, immagini e layout © Helpinweb.it ( Mappa Sito )