Im using this kind of frameset code to open outbond links with frames ->
<html>
<head>
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>sitename</title>
</head>
<frameset rows="24,*" frameborder="0">
<frame name="ylatunniste" scrolling="no" noresize target="site1" src="up.php"/>
<frame name="site2" src="<?php echo $_GET['link']; ?>"/>
<noframes>
<body>
<p>no frame</p>
</body>
</noframes>
</frameset>
</html>
If there is & mark in outbond link, this dont work. Outer link will cut just before &
Any ideas what should i do?
And please, dont ask why frames, i just need them.