Grazie innanzitutto per la risposta.....con il seguente leggo i dati dal server...<?php
$url = "https://api.xxxx.it/v1/richiesta/info";
$request = array("api_uid" => "128877", "api_key" => "7f3f0d911b018f02ac3febc50981bf3f");
$options = array(
"http" => array(
"header" => "Content-type: text/json\r\n",
"method" => "POST",
"content" => json_encode($request)
),
);
$context = stream_context_create($options);
$result = json_decode(file_get_contents($url, false, $context), true);
print_r($result);
?>
Scusa ignoranza ma dove dovrei inserire quello che mi hai detto???