tengo este script
Código PHP:
<?
$host = "www.sitiodestino.com";
$method = "POST";
$path = "/servicios/elscript.asp";
$data = $PostString;
$method = strtoupper($method);
$fp = fsockopen($host, 443);
fputs($fp, "$method $path HTTP/1.1\r\n");
fputs($fp, "Host: $host\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");
if ($method == 'POST') {
fputs($fp, $data);
}
while (!feof($fp)) {
$buf .= fgets($fp);
}
echo $buf;
?>
el problema es que definitivamente tiene que ser a https si alguien sabe de algun script se lo agradeceria.
Gracias