Either:
(a) Use an absolute path:
<?php
include $_SERVER['DOCUMENT_ROOT'] . '/menu.php';
?>
(b) Use a relative path:
<?php
include '../menu.php';
?>
(c) Set your global or local PHP configuration to have the include_path setting include the directory with the include file.