staticbits.thefnf.org/fnf2014/js/jsor-jcarousel-7bb2e0a/examples/special_textscroller.php

15 lines
204 B
PHP
Raw Normal View History

2022-09-27 05:51:15 +00:00
<?php
header('Content-Type: text/xml; charset: utf-'.'8');
if (!isset($_GET['feed'])) {
exit;
}
if (strpos($_GET['feed'], 'http://') !== 0) {
exit;
}
echo file_get_contents($_GET['feed']);
?>