<?php
function printHeader()
{
?>
<html>
<head>
<title>Test Page</title>
</head>
<body>
<?
}
function printFooter()
{
?>
</body>
</html>
<?
}
?>
<?php
function printAll()
{
printFooter();
printHeader();
}
?>
<?
$only_include_header = true;
include somefile.php;
?>
<?
<div>some header</div>
if (!$only_include_header):
<div>some body</div>
endif;
?>