Is This possible??
Posted: Thu Oct 02, 2008 12:36 pm
Hi Everyone,
I am trying to redirect a site and mask the url to my site. I also want to bring in a pop up window and I cant seem to get it to work.
I think it is because of the frame. Is there any way to pop up a window after loading page into a frame?
Here is the code I have so far. It is working but I cannot get a pop up to work.....Thanks
I am trying to redirect a site and mask the url to my site. I also want to bring in a pop up window and I cant seem to get it to work.
I think it is because of the frame. Is there any way to pop up a window after loading page into a frame?
Here is the code I have so far. It is working but I cannot get a pop up to work.....Thanks
Code: Select all
<html>
<head>
<title>New Page Title</title>
<meta name="keyword" content="Keywords to my site" />
<meta name="description" content="The description of this site." /></head>
<frameset rows="1, *" border="0">
<frame noresize="noresize" src="1.html" />
<?php
$_SERVER['FULL_URL'] = 'http://www.mysite.com';
if($_SERVER['QUERY_STRING'] > ' ')
{ $_SERVER['FULL_URL'] .= '?'.$_SERVER['QUERY_STRING']; }
print "<frame noresize=\"noresize\" src=\"" . $_SERVER['FULL_URL'] . "\" />";
?>
</frameset>
</html>