I've found that may be such thing like "curl" can help us. But, unfortunately, I don't know what's that. Do you? Or may be, some links where I can read about it?
So, now I'm trying to find smth about curl...
What I've found is (http://www.phpbuilder.com/forum/read.php3?num=1&id=116476&thread=102499):
this will output the contents of secure site to users. You need to compile php with curl library.
Or, a second chance you can run curl externally using popen command in php.
<body>
<?php
$ch = curl_init ("https://go2all.com/cgi-bin/store");
$fp = fopen ("homepage.txt", "w");
curl_setopt ($ch, CURLOPT_INFILE, $fp);
curl_setopt ($ch, CURLOPT_HEADER, 0);
curl_exec ($ch);
curl_close ($ch);
fclose ($fp);
?>
</body>