Hello!
You can easily get an webpage with:
$fp = fopen("http://www.mydomain.com/", "r");
if ($fp) exit;
while(!feof($fp))
{ $line .= fgets($fp, 4096);
}
fclose($fp);
print $line;But this doesn't work with https (SSL). How can I get an https-page? Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

