include ("include/header.inc.php");
I am trying to modify an existing page but when I open the page, all I see is the data between <p> and </P>.
Do I need to adjust the file path? It is in WAMP/WWW/
Here is the entire block of code:
<?
include ("include/header.inc.php");
?>
<p>This is the address book for Administration and PI's [name].</p>
<?
include ("include/dbconnect.php");
$sql="SELECT * FROM $table";
$result = mysql_query($sql);
$resultsnumber = mysql_numrows($result);
echo "The current total of entries in the address book is: $resultsnumber";
include ("include/footer.inc.php");
?>
Thanks for the explaination.