Forum Moderators: coopster
Do you think I could install a PHP script to do the same job? Or should I just kick my IT departments ass?
Assuming that the content you want is at [somedomain.com...] , just put the following snippet at an appropriate point in your page to include the remote content:
<?
$harvest=file("http://www.somedomain.com/foo.html");
for($i=0; $i< count($harvest) ; $i++) {
echo($harvest[$i]);
}
?>
This will harvest on every visit to the page - you may want to think about caching locally, but if it's just a news feed then the above should work fine as it is.