Hi all,
This is what I want do you:
On web page 1, I have a link to an external site.
When the link is executed I want page 2 to open which is devided into Frames.
The top frame has information regarding my site and the bottom frame contains the linked site.
Does this make sence, I hope so.
Page 1.
<a href="http://www.asite.com.com"</a>
Page 2.
<html>
<head>
<title>Travelling to England : External Link</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="80,*" frameborder="NO" border="0" framespacing="0">
<frame name="topFrame" scrolling="NO" noresize src="ExternalTopFrame.htm" >
<frame name="mainFrame" src="ExternalMFrame.htm" scrolling "no" noresize marginheight="0" marginwidth="0">
<frame src="http://www.asite.com" name="mainframe" marginheight="0" marginwidth="0">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</noframes>
</html>
The Question:
How, using PHP pass the variable of the Page 1 link to the Page2 mainframe and get the script to call the external site.
Can anyone help.
Dereck