I've tried opening my html files containing the php include code, but on all of my browsers (IE, Netscape, FF, Opera, etc) I get this:

And what I want is this:

Here's the html code for the page, quite small:
<html>
<head>
<title>Some Page</title>
</head>
<body marginwidth="0" marginheight="0"
bgcolor="#FFFFFF" text="#FFFFFF"
font="impact" link="#00CCCC">
<center>
<table border="4" cellpadding="5" cellspacing="0" width="500px"
align="center" bgcolor="#000000">
<tr>
<td bgcolor="#A3FF66" colspan="2"><h2>Title: Hello World!</h2></td>
</tr>
<tr height="480px">
<td valign="top">Navigation: <br />
<?php include ('part.php'); ?>
</td>
<td valign="top">Content: <p>Hello world! Hello world! Hello world!</p></td>
</tr>
</table>
</center>
</body>
</html>
Can anyone tell how I can get my browsers to display php? Thanks.
Edited by Minine, 01 July 2006 - 07:40 PM.
