How do i implement a dynamic navigation in php?
e.g
Home | about | contact | faq | tutorials
i need to automatically generate the links dynamically
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:
Home | About | etc...
This way you can update your navigation menu just once for all your pages.