I am trying to connect to verisign with curl_exec. Everything works fine when I use:
curl_setopt($cp, CURLOPT_FILE, $fp);
However I would rather capture the stdout using:
$php = fopen("php://stdout", "a");
I can't seem to fread the $php pointer. Anyone deal with this before?
Thanks
Damon