관리-도구
편집 파일: magpie_simple.php
<?php include 'feed2js_config.php'; $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>