I have a script which generates an RSS feed, I call the script from cron and it generates an XML file.
What I would like to do is write a single script that I can call from cron, but that script in turn calls multiple scripts which generates multiple RSS feeds.
I tried doing:
<?php
include('delicious-tags.php');
include('delicious-user.php');
?>
But I get the error:
<b>Fatal error</b>: Cannot redeclare file_get_html() (previously declared in /home/danvelox/public_html/simple_html_dom.php:65) in <b>/home/public_html/simple_html_dom.php</b> on line <b>80</b><br />
Any ideas?