When I call index.php this is what it displays
< ?php require("header.php"); ?> < ?php require("menu.inc") ?> < ?php if ($c != "") { include("content".$c.".php"); } else { include("content1.php"); } ?>
< ?php require("footer.php"); ?>
Below is my index.php is there something wrong with the file, I am new to all of this please help.
Thanks
Queen Cyberlot
<html>
<head>
<title>Sample Industries Incorporated</title>
</head>
<body>
< ?php
require("header.php");
?>
<table width="95%" cellspacing="15" cellpadding="5" border="0">
<tr>
<td valign="top" width="120">
< ?php
require("menu.inc")
?>
</td>
<td valign="top">
< ?php
if ($c != "") {
include("content".$c.".php");
} else {
include("content1.php");
}
?>
</td>
</tr>
</table>
< ?php
require("footer.php");
?>
</body>
</html>