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

9 lines
125 B
PHP
Raw Normal View History

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