Files
bobsleighphotos.com/_cubecart/CubeCart-4.3.0/classes/magpie/scripts/magpie_simple.php
2017-03-02 20:30:40 -06:00

29 lines
907 B
PHP
Executable File

<?php
if (!defined('CC_INI_SET')) die("Access Denied");
define('MAGPIE_DIR', '..'.DIRECTORY_SEPARATOR);
require_once(MAGPIE_DIR.'rss_fetch.inc');
$url = $_GET['url'];
if ( $url ) {
$rss = fetch_rss( $url );
echo "Channel: " . $rss->channel['title'] . "<p>";
echo "<ul>";
foreach ($rss->items as $item) {
$href = $item['link'];
$title = $item['title'];
echo "<li><a href=$href>$title</a></li>";
}
echo "</ul>";
}
?>
<form>
RSS URL: <input type="text" size="30" name="url" value="<?php echo $url ?>"><br />
<input type="submit" value="Parse RSS">
</form>
<p>
<h2>Security Note:</h2>
This is a simple <b>example</b> script. If this was a <b>real</b> script we probably wouldn't allow strangers to submit random URLs, and we certainly wouldn't simply echo anything passed in the URL. Additionally its a bad idea to leave this example script lying around.
</p>