dynamic navigation in php

前端 未结 3 666
[愿得一人]
[愿得一人] 2021-01-03 16:37

How do i implement a dynamic navigation in php?

e.g

Home | about | contact | faq | tutorials

i need to automatically generate the links dynamically

3条回答
  •  Happy的楠姐
    2021-01-03 16:58

    It seems that you want to include a menu file in all your pages. You can use include().

    In all your pages:

    
      
        
    
        Contents of this page here...
    
      
    
    

    And in navigation.php:

    
    

    This way you can update your navigation menu just once for all your pages.

提交回复
热议问题