Unless I'm misunderstanding your question, you can put your menu code into a separate PHP file and then include that into your main pages (also PHP files).
inc_menu.php:
<?php
// menu code here
?>
main.php:
<?php
// other code
include("inc_menu.php");
// other code
?>