I have this code:
<?php
$url = $_GET['http://www.newsisfree.com/HPE/xml/feeds/30/4430.xml'];
require_once('rss_fetch.inc');
$rss = fetch_rss( $url );
// echo "Channel Title: " . $rss->channel['title'] . "<p>";
echo $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>";?>
Basically, it gets newsfeeds, displays the links. These links are iframed in previous code that calls this code into the frame. Whenever I left-click on the links, it brings up the pages in the lil frame. I want it to pop open a new window, full-sized. What code should I add and where? Thanks!
dead