webgui/www/extras/yui-ext/examples/layout/feed-proxy.php
JT Smith cfd09a5cb6 upgraded to yui 0.12.0
upgraded to yui-ext 0.33 rc2
2006-11-28 02:23:34 +00:00

9 lines
No EOL
209 B
PHP

<?php
// this is an example server-side proxy to load feeds
$feed = $_REQUEST['feed'];
if($feed != '' && strpos($feed, 'http') === 0){
header('Content-Type: text/xml');
readfile($feed);
return;
}
?>