do you have short tags enabled (see phpinfo())? generally, it is best to use the full tag (<?php).
further,
is invalid ("<?include" is not a valid processing instruction), better use
further,
Code:
<?include('file.php');?>
Code:
<?php include 'file.php'; ?>
Comment