Files
luos/gulliver/js/maborak/samples/maborak.module.rss.php

14 lines
252 B
PHP
Raw Normal View History

2010-12-02 23:34:41 +00:00
<?php
header('Content-Type: text/xml; charset=utf-8');
$action = $_POST['action'];
if($action=="proxy")
{
$url = $_POST['url'];
if($url)
{
$content = @file_get_contents($url);
echo ($content)?$content:"<error>Error loading RSS</error>";
}
}
?>