Is there any alternative for using a frame. I’m just a beginner and I still don’t know what the web designers are doing.
Almost all of the websites I see. Retains the header in the page. How can I apply that so I can stop from using frames.
Is there any alternative for using a frame. I’m just a beginner and I
Share
Use a server-side language like PHP in order to generate a full HTML page.
For example, create three files:
In the header.php file you have to put the first part of the HTML page.
In the page.php file you have to put the main content of the HTML page.
In the footer.php file, like the header.php, you have to put the end part of the HTML page.
So you can change the page file and the header and the footer remain.
header.php:
page.php:
footer.php:
For more information, search for a PHP tutorial with Google.