So it has to update in the user's browser every 10 seconds?
Install jquery and do something like:
CODE
$(document).ready(function()
{
// Update the news every 10000 microseconds (check the doc to see how many seconds this is)
setInterval(update_news, 10000)
update_news();
});
function update_news()
{
$("#news").load("/news/");
};
Now this add a div on your website like: <div id="news">Loading...</div>
Once the page is rendered it will place all the html from /news/ into that div.
I didn't test any of that syntax so I can't 100% guarantee it would work, but its a start.
cheers
References:
http://docs.jquery.com/Downloading_jQueryhttp://docs.jquery.com/Ajaxhttp://docs.jquery.com/Ajax/load#urldatacallback