Alright, you may want to read this:
http://www.phpbuilder.com/board/showthread.php?s=&threadid=10223621
So you know where I came from.
What do I need to do to initiate a socket on port 443 and perform a get with HTTPS while sending a cookie?
Example:
$svr="asever.com";
$port = 443;
$fch = "/somescript.php";
$userAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)";
$fp = fsockopen($svr, $port, $errno, $errstr, 30);
if(!$fp) {
echo "$errstr ($errno)<br>\n";
} else {
fputs($fp, "POST $fch HTTPS/1.1\r\nCookie: BrowserTest=Success%3f;\r\n\r\n");
}
ANYONE?