January 5th, 2005, 08:14 PM
|
#1 (permalink)
|
| Junior Member
Join Date: Jan 2005
Posts: 2
| Putting a website in the bottom frame.
Im having some problems with something that is probably very simple, i have a top frame, and the bottom frame should be a webpage which is set from a variable that is passed in the adress bar. Here is what i have, which isnt working PHP Code:
<frameset rows="20%,80%">
<frame>
<a href="javascript:history.go(-1);"><--Back to MBD</a> | <?php
$page=$_GET['p'];
$a='<a href=\'$page\'>Remove Frame</a>';
$b='<frame src=\'$page\'></frame>';
echo $a;
echo $b;
?>
</frameset> I know its ugly, but im a noob :P heres a link to the page so far just in case you need to see it for some reason Link
If you dont know what im talkign about, just tell me :P |
| |