<?
require './SimpleObject.php';
require './RemoteContent.php';
// Getting remote page
$rc = new RemoteContent('http://www.mysite.com');
$data = $rc->getData();
if ($rc->getError()) {
echo "Error while retrieving remote content: ".$rc->getError();
exit;
}
echo $data."<hr>";
// Getting local file
$rc = new RemoteContent('/path/to/your/file');
$data = $rc->getData();
if ($rc->getError()) {
echo "Error while retrieving local file: ".$rc->getError();
exit;
}
echo $data;
?>
|