When a visitor clicks on a category, it takes them to a category page which lists all the sub categories, and under each category is a list of the links in it.
When you click on one of the links, it takes you to a frame page. I have a tiny frame across the top which allows them to stay within the site.
(Q) I would like to add a tiny link in my top frame that says "remove this frame" and it would dynamically link to their site, hence removing the frame.
CODE
<HTML>
<HEAD>
<TITLE><?echo $link_info[1];?> - London Ontario Canada Southwestern Ontario Business Directory</TITLE>
</HEAD>
<FRAMESET frameborder="0" ROWS="8%,92%">
<FRAME SCROLLING="No" NORESIZE SRC="header.php?cat=<? echo $cat;?>">
<FRAME SRC="<? echo $page; ?>">
</FRAMESET>
<NOFRAMES>
<BODY>
<P>
</BODY></NOFRAMES></HTML>
<HEAD>
<TITLE><?echo $link_info[1];?> - London Ontario Canada Southwestern Ontario Business Directory</TITLE>
</HEAD>
<FRAMESET frameborder="0" ROWS="8%,92%">
<FRAME SCROLLING="No" NORESIZE SRC="header.php?cat=<? echo $cat;?>">
<FRAME SRC="<? echo $page; ?>">
</FRAMESET>
<NOFRAMES>
<BODY>
<P>
</BODY></NOFRAMES></HTML>
Here's an example of the page: http://www.londonlink.ca/link.php?cat=24&a...blesideinn.com/
I hope I have given you enough information to answer my question. Thanks in advance.
Gin

