Recommend this page to a friend! | Stumble It! | Bookmark in del.icio.us |
Classes of Eugene Panin | > | Remote Content retriever | > | RCexample.php | > | Download | ||
|
Download |
<? 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; ?> |