HTML Templates — php?

前端 未结 4 1512
时光说笑
时光说笑 2021-02-05 23:20

So, I\'m making a site about WWI as a school assignment, and I want this to appear in every document:





    <         


        
4条回答
  •  悲&欢浪女
    2021-02-06 00:00

    Using php includes:

    Save this as top.php

    
    
    <?php echo $title; ?>
    
    
    
    
    
    
    

    Save this as bottom.php

    
    
    
    

    Then your individual pages would be like this:

    
    //This would be where you would make the changes that need to be made on each page.
    
    

提交回复
热议问题