How to make same layout for all web pages

后端 未结 5 1218
野趣味
野趣味 2021-01-02 13:22

I am currently working on HTML I want to ask a question about website development.I am developing a website in which the basic layout remains same like menu, side menu etc b

5条回答
  •  孤街浪徒
    2021-01-02 14:07

    This is very big topic to include in just one answer. SO I will give only the logical part.

    Separate your template into multiple chunks like:

    1. header.php
    2. leftSidebar.php
    4. rightsidebar.php
    5. footer.php
    

    Now, include these common part on your every page.

    For example: index.php

    ".$thedifferentpart."
    "; //Change only this part on every other page you will create. include "footer.php"; ?>

    NOTE: This is only a logical part, applying the concept on your code

提交回复
热议问题