Files
luos/gulliver/js/maborak/samples/maborak.module.rss.php
2011-09-05 12:47:25 -04:00

14 lines
252 B
PHP
Executable File

<?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>";
}
}
?>