Ciao, grazie per la rapida risposta.
Un esempio puoi vederlo qui:
http://appgratuita.altervista.org/test.php
Ti posto anche il codice sorgente:
Codice HTML:
<?php
$post_data = array("p1"=>"v1","p2"=>"v2");
file_get_contents_curl("http://appgratuita.altervista.org/",$post_data);
function file_get_contents_curl($url,$data) {
$ch = curl_init();
print "URL: ".$url."<br><br>Data:";
test($data);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,false);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_TIMEOUT, 1);
curl_exec($ch);
curl_close($ch);
}
function test($data) {
print "<pre>";
print_r($data);
print "</pre>";
}
?>
Grazie