PHP Files

DUE Sunday, Apr 01 – 8 points
(Monday NOON deadline)

  • Gradebook Declaration: I have created at least four PHP files on my web server, three files for each complete web page and at least one other file included into them. The three web pages look similar to the three PDFs attached to this assignment. I have thoroughly tested the links between each of the three pages to ensure that they all work correctly. I have published a blog post on my course blog linking to the one of the three complete web pages I created.

Remember the 07. CSS File and 05. Technology Activity: FTP assignments from before Spring Break? After completing them, you had one HTML file talking about mythology with all the CSS rules embedded in it sitting on your web server. In this assignment, we are going to expand that one web page into three web pages (one for each section), separate out the CSS into an external file, and add some navigation to link the three pages to each other.

External CSS

In Week 07′s CSS File assignment, you added CSS rules to a <style> element in the <head> of the HTML file created during Week 04. For this assignment, you will need to apply those same rules to the HTML file using an external stylesheet instead. You will then need to upload the files to your web hosting account.

  1. Create a new CSS file with those rules.
  2. Remove the rules from the <head> of the HTML document.
  3. Apply the CSS rules from your new CSS file to the HTML using a <link> element. (See Week 06′s Other Media + Quiz assignment for more information, the last of the four CSS videos.)

PHP

The navigation will be the same on all three pages, so we’ll create a separate PHP file that contains the navigation and include it dynamically into all the three web pages. (That means that the three web pages with the content have to be PHP pages instead of simple HTML files.)

When I completed the assignment, I created a new folder on my web hosting account. Looking at that folder through an FTP program when I was finished, I saw that I had the following five files.

php-mythology-ftp

HTML Files

  • I created three PDFs that show what each of the three main web pages look like. Notice that I included the navigation at the top and the bottom of each page. (These three files will need to have a .php extension in order for the PHP include command to be processed correctly.)

PHP Include

  • The file I created called [include-nav.php] just contains the HTML with the list of navigation links. Here’s a link to a tutorial that describes how to user PHP’s include() function to include another file:

CSS for Navigation – Optional

  • I added a very small number of CSS declarations to my [mythology.css] file to style the navigation. You do not have to do this; you can just make your navigation items into a regular unordered list. Here’s a list of all the properties I used with links to the entry for them in SitePoint’s CSS Reference. (There are two different ways we discussed to style the navigation like this; I have included all the properties for both ways, so you won’t use all of these.) I’m including this list appears in alphabetical order, not in the order they would appear in my CSS file.

FTP

You will need to upload all five files through FTP to your web server. I would really like you to use an FTP editor like Aptana Studio for this assignment, so I’m offering two bonus points for doing that (see the 10. BONUS: FTP Editor for details). Otherwise, look back at the 05. Technology Activity: FTP assignment for instructions on uploading files using an FTP interface or your host’s file manager.

Blog Post

After you have created all the necessary files on your web server, you’ll need to publish a blog post on your course blog that contains a link to one of the three complete web pages on your web server. Once you have completed the assignment, make your gradebook declaration.

DUE Sunday, Apr 01 – 8 points
(Monday NOON deadline)