hi all,
i have the following frame set:
<frameset cols="159,624" rows="*" frameborder="NO" border="0" framespacing="0">
<frame src="menu.php" name="main" scrolling="NO" frameborder="NO" marginheight="5" marginwidth="5">
<frame src="admin/<? echo $page; ?>" name="bar">
</frameset><noframes></noframes>
now, when someone presses one of the links in the "bar",
i want the new page to be opened in THE WHOLE PAGE and not in the frames..i want the frames to be closed..
when i do :
<a href=admin.php target='dynamic'> Admin Main Page</a><br>
<br>
It opens a new window with the admin page...but i want it to be opened in the same window wihtout frames..
if i do :
<a href=admin.php target='main'> Admin Main Page</a><br>
<br>
-> It prints it in the frame....
So, i can't figure out how to close frames and let it upload in the totall fresh screen..
Help?
Sofia