this is example code from the php site...
<?php
$handle = fopen("http://www.example.com/", "rb");
$contents = '';
while (!feof($handle)) {
$contents .= fread($handle, 8192);
}
fclose($handle);
?>
(sorry for the delay)
No, there appears to be something wrong with my account as that doesn't work, and include doesn't work either. PHP is screwy for me.