This is a very simple question about frames that would be answered by a decent book, if I had one
. However, I'm not trying to learn web programming - I just need a simple interface to use a couple of tools.
I have added a link from my home-page to the first tool (written in php), it uses frames. The link works just fine & I can use the tool. However, the only way to exit it is to close the browser window (or the tab, using Firefox), so I want to modify teh php to add a button to return to my home-page. When I do so it leaves frames active, putting my home-page in just one of them
Please can anyone advise how to disable the frames?
The relevant section of the php is:
<table class="edit_dn_menu" width=100%>
<tr>
<td><img src="images/home.png" alt="<?php echo $lang['home']; ?>" /></td>
<td width=50%><nobr><a href="/index.html" target="right_frame"><?php echo $lang['home']; ?></a></nobr></td>
(more <td> ... </td> lines)
</tr>
Many thanks!
Richard.