Hi,
Im really new to php, so this one should be pretty easy. My site is split header.php and footer.php, and an index.php that holds these in frames:
<frameset rows="80,*" frameborder="NO" border="0" framespacing="0">
<frame src="header.php" name="topFrame" scrolling="NO" noresize >
<frame src="footer.php" name="mainFrame">
</frameset>
My links are in the header.php file, and are all pointing to the iframe, except for my forums link that I want to load the forums below the header in place of the footer. The problem arises when i try to link back to the home.php, which ideally would load the footer.php again, with the home.php appearing in the iframe. Instead though, it loads home.php into the same area as footer.php. The code lools like this:
<iframe name="center_iframe" src="filez/home.php"></iframe>
links:
<a href="filez/home.php" target="footer.php?center_iframe"><img src="images/nav/home.gif"></a>
<a href="/forum/index.php" target="mainFrame"><img name="msgboard"></a>
Is there a solution to this without diverting too much from this scenario? Thanks in advance.