using server side includes we can separate the navigation file. can we similarly keep the navigation part of the site separately in a file & include that file dynamically in all the pages of the site using php?
Yes you can keep the navigation in a separate file maybe menu.txtx for example. Then in all of your pages you can call it like
include("menu.txt");
I do it all the time