Quote:
Originally Posted by kandah
I see many networks having a bar in the header of all their sites to allow easy access to the other sites in the network. Is there a script that handles this?
Example: http://www.gamerankings.com/itemrank...eviewid=760596
Okay so that bar is for a site out of the network for easy access back to the original site, but you get the idea.
|
The the example you just showed. It's an framed html document. For example:
launch.php
Code:
<frameset frameborder=0 framespacing=0 border=0 rows="100,*">
<frame src="topframe.php" name="MainFrame" marginwidth=0 marginheight=0 scrolling=no noresize bordercolor="#FFFFFF">
<frame src="$location" name="LinkFrame" bordercolor="#FFFFFF">
<noframes>
<body bgcolor="#FFFFFF" text="#000000">
<p>Click on the link to proceed to <a href="$location" target=_top>$location</a>.
</body>
</noframes>
</frameset>
Where $location is where you want to send them and in topframe.* you can have your own header like they do.