Scusate se non apro un' altro topic, poiché questa domanda è inerente al topic. Con le contestazioni http si può abbinare ha file_get_contents()? http://www.php.net/manual/en/context.http.php
ecco il
Codice PHP:
<?php
$postdata = http_build_query
(
array(
'authlogin' => 'mylogin' ,
'authpasswd' => 'mypasswd'
)
);
$opts= array( 'http' =>
array(
'method' => 'POST' ,
'header' => 'Content-type: application/x-www-form-urlencoded' ,
'content' => $postdata
)
);
$context = stream_context_create( $opts );
$result = file_get_contents('https://www.esempio.com/http/altra_path' , false , $context, 0,
15);
echo "$result";
?>
Non vengono inserite le variabili $authlogin è $authpasswd, nel file_get_contents, può essere che altervista non lo supporti?
Spero in un vostro consiglio.
Ps. uso php 5.2 è ho abilitato server to server.
EDIT: errore mio, nell' array $opts, avevo inserito 'https' invece di 'http', perché credevo con il protocollo https dovevo utilizzare 'https'.