Is it possible to create a dynamic type of page that will change the URL address when the frame content is changed, like index.php?main=updates.html
this way I could include my framed menu without the lack of linking capabilities. Any ideas?
To clarify the index page would be a dynamic page with frames. When you click a link instead of leaving the URL address alone, it changes to index.php?main=content/link.html
This way you can have a framed menu and better linking capabilites.
so far I have:
</head>
<frameset cols="320,*" framespacing="0" border="0" frameborder="0">
<frame src="menu.html" target="main" scrolling="no" name="left" noresize>
<frame src="<?php echo $GET['main']; ?>" target="self" name="main" noresize>
</frameset>
</html>
I can make links that include the frames and the specific page, but I need the code to read what the main frame changes to when a link is clicked and display it in the URL.