Forum Moderators: open
I am taking a website out of frames and some pages point to links that load within a lower frame while keeping our site header up top.
Is there a way to maintain that functionality without having that page be in frames? Not looking for target=_blank but some insight on how this can be done within a page. Thanx.
I would use some simple server side scripting to achieve what you are looking for, like PHP includes. In theory, all you do is make the static section in html, rename it to "*.php" and then include it like
<?php require("url/file.php");?> Of course, your host must support php.
Search the web for tutorials or visit [php.net...] to learn more about php.
For example displaying the contents of [webmasterworld.com...] on the bottom of a page at www.widgets.com (like you can with frames, but without using frames)
You can tell it to retrieve a page and store that page as a string, then you can parse whatever you want out of it and display it inside an existing page.