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

9 lines
125 B
PHP
Executable File

<?php
header('Content-Type: text/xml; charset=utf-8');
$url = $_POST['url'];
if($url)
{
echo @file_get_contents($url);
}
?>