Maybe I need to take a nap and look at this again. But, I swear that I copied everything correctly. I used a book and a tutorial from this site. I uploaded this and viewed it from my website, which runs the latest version of PHP and I also tried in locally while running XAMPP.
The problem is that the PHP isn't doing anything. Normally,(if I read right) if the require() didn't load, I'll get an error. I used on as my first code to see if it works or not. I didn't get an error at all and the content section loaded normally. Also, I thought that if you viewed the source code you would see HTML not php stuff.
I placed all the files in the root directory for my website. This maybe a question to email GoDaddy, but should I have uploaded them to the phpuploads folder, then redirected my includes?
Also, when I did it locally, I placed all the needed files in the htdocs folder.
CODE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Welcome</title>
<link rel="stylesheet" type="text/css" href="bigsheet.css" />
</head>
<body>
<!--OPEN WRAPPER-->
<div id="wrapper">
<!--INSERT HEADER-->
<? require("theheader.php") ?>
<!--INSERT MENU-->
<?php include("themenu.php") ?>
<!--OPEN CONTENT-->
<div id="content">
<!--start content text-->
<h1>Hello World</h1>
<p>Blah Blah Blah</p>
<!--INSERT FOOTER-->
<?php include("thefooter.php") ?>
</div><!--CLOSE CONTENT-->
</div><!--CLOSE WRAPPER-->
</body>
</html>