Well heres part of the result menu that contains the frame code
PHP Code:
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Click Above Links To Try Search Again</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<frameset rows="10%, 90%" frameborder="0" noresize="noresize" scrolling="no" marginwidth="0" marginheight="0">
<frame src ="menu.php?site=<?php echo $site; ?>&q=<?php echo $q; ?>" />
<frame src ="<?php echo $url; ?>" name="result"/>
</frameset>
</head>
<body>
</body>
</html>
And heres the menu part that relates to the above php code.
PHP Code:
<?php
// same as before, grab the search query to put into the different urls
$q = $_GET["q"];
?>
<p>
<a href="http://www.btscene.com/search.php?term=<?php echo $q; ?>&cat=0" title="search again with btscene" target="result">btscene</a> |
<a href="http://btjunkie.org/search?q=<?php echo $q; ?>&uid=0&sort=" title="search again with btjunkie" target="result">Btjunkie</a> |
<a href="http://www.btmon.com/torrent/<?php echo $q; ?>" title="search again with Bittorrent Monster" target="result">Bittorrent Monster</a> |
<a href="http://www.eztv.it/index.php?search=<?php echo $q; ?>" title="search again with EZ-TV" target="result">EZ-TV</a> |
<a href="http://fenopy.com/?keyword=<?php echo $q; ?>&select=0&order=0&sort=0&minsize=&maxsize=&search.x=0&search.y=0&search=Search" title="search again with Fenopy" target="result">Fenopy</a> |
<a href="http://www.fulldls.com/search-all-torrents/?qa=<?php echo $q; ?>" title="search again with Fulldls" target="result">Fulldls</a> |
<a href="http://isohunt.com/torrents/?ihq=<?php echo $q; ?>" title="search again with Isohunt" target="result">Isohunt</a> |
<a href="http://www.mininova.org/search/?search=<?php echo $q; ?>" title="search again with Mininova" target="result">Mininova</a> |
<a href="http://www.sumotorrent.com/searchResult.php?search=<?php echo $q; ?>" title="search again with Sumotorrents" target="result">Sumotorrents</a> |
<a href="http://thepiratebay.org/search/<?php echo $q; ?>/0/3/" title="search again with The Pirate Bay" target="result">The Pirate Bay</a> |
<a href="http://www.torrentportal.com/torrents-search.php?search=<?php echo $q; ?>" title="search again with Torrentportal" target="result">Torrentportal</a> |
<a href="http://www.torrentspy.com/search?query=<?php echo $q; ?>&submit.x=0&submit.y=0" title="search again with Torrentspy" target="result">Torrentspy</a> | </p>
Theres no css I just want the menu to take up less of the screen. I just want its height to be high enough to contain the links and a background menu bar image.
Thanks.
Bookmarks