How can i fix this?
Posted: Fri Mar 09, 2007 3:14 pm
I have a site that links to other sites, what i'm trying to do, is when the user clicks the link, it open the other site but with a frame so it doesn't leave my site (kind of like hotmail when you click a link in a mail) .. I have this
index.php
the links are like this :
link.php
thank you.
index.php
the links are like this :
Code: Select all
link.php?url=http://fmshaon.blogspot.com/2007/01/even-windows-xp-fears-president-bush.htmlCode: Select all
<FRAMESET ROWS="38,*" cols="*">
<FRAME NAME="arriba" SRC="up.php" MARGINWIDTH="10" MARGINHEIGHT="10" SCROLLING="no" FRAMEBORDER="0">
<FRAME NAME="abajo" SRC="<?php echo $url ?>" MARGINWIDTH="10" MARGINHEIGHT="10" SCROLLING="auto" FRAMEBORDER="0">
</FRAMESET>