try
<? php
include “dir/dir/page1.php”;
?>
then regarding to this one
“Warning: Cannot modify header information – headers already sent”
you may want to use the built in function of php which is
ob_start(); – it should be placed on top
ob_end_flush(); – to make it cleaner