You can do it.
Either make an iframe with that source, or use the following code instead:
PHP Code:
<?php
$xmlfile = fopen("http://r144.com/freelancejobsnews.rss", "r");
if(!$xmlfile)die("can't find the specified xml file");
$readfile = fread($xmlfile ,40000);
$searchfile = eregi("<item>(.*)</item>", $readfile ,$arrayreg);
$filechunks = explode("<item>", $arrayreg[0]);
$count = 11;
//Replace above line with this to show all headlines: $count = count($filechunks);
for($i=1 ; $i<=$count-1 ;$i++)
{
ereg("<title>(.*)</title>",$filechunks[$i], $title);
ereg("<link>(.*)</link>",$filechunks[$i], $links);
echo "document.write(\"<br><li>\")";
echo "document.write(\"<a href ='$links[1]'\>" . addslashes($title[1]) . "</a>\");";
echo "document.write(\"</li></br>\")";
}
?>
Then to embed it, add the following code to your main page:
Code:
<SCRIPT src="url.to/file.php"></SCRIPT>
Bookmarks