Сам запрос:
$fp = @fsockopen($url['host'], 80, $errno, $errstr, 30);
if (!$fp) return false;
$responce = '';
fwrite($fp,$post);
while ( !feof($fp) )
$responce .= fgets($fp);
fclose($fp);
Пробывал так:
$ch = curl_init($url['host']);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt_array($ch, [CURLOPT_POST=>'true',CURLOPT_POSTFIELDS=>$post]);
curl_setopt($ch, CURLOPT_HTTPHEADER, $head);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
$d = curl_exec($ch);
Но не работает.
Памагитя?)