| about.phps | This is the basic template for reading the source HTML and spitting it out into a dynamic PHP-based page. All of the pages on this site have this basic structure. | Last modified: 26 March 2008 09:22:30 PM |
| add_news.phps | This is part of my admin package. It is the webform for me to add news without having to edit a flat file or manual inserts into the database. It uses the same principle as the other templates. | Last modified: 27 November 2001 07:20:10 AM |
| add_news_post.phps | This script is the other part of my ever-growing admin package. It is the post script to take my juicy scoop for the day and insert it into the database. It does some date manipulation, since the script exists on the east coast and I'm on the west coast. Check the code out to see what I'm talking about. | Last modified: 11 November 2006 02:35:59 PM |
| feedback.phps | Yet another standard front-end to my HTML source. | Last modified: 27 November 2001 07:17:58 AM |
| feedback_post.phps | This file is the post script for users posting feedback. It uses both $_POST and $_GET for variable-passing, so if you need an example for that, check this. Then some more date manipulation, then we insert the data into one of the tables. Then a parallel load goes into another table for a unique date key so I can pull this stuff out in an organized manner. | Last modified: 31 December 1969 04:00:00 PM |
| index.phps | This is the source to this index page. It plays with directory reading, arrays, regular expressions, and string manipulations. | Last modified: 03 December 2001 10:21:12 PM |
| photos.phps | And another run-of-the-mill template loader. | Last modified: 27 November 2001 07:18:12 AM |
| rand_index.phps | This is the index page for the root directory. So this is the first thing people see when they come to this site. The reason it is called rand_index.php is because it has a random image generator for the image displayed on the right side of the main links. One big advantage of this script is that any image I place in the specified directory get added into the "pool" of allowable images. So I never have to modify the code to add images. Another nice feature is how it pulls the news from the MySQL database and displays it. It demonstrates the use of subroutines. |
Last modified: 22 November 2003 03:15:35 PM |
| references.phps | Yes, another template loader. | Last modified: 27 November 2001 07:18:57 AM |
| resume.phps | This one is a standard template loader which also displays the last time my resume was modified (the MS Word document that is). | Last modified: 27 November 2001 07:19:14 AM |
| view_comments.phps | This is a pretty cool script. It pulls all data based on a month and year from the pj_feedback table by getting the string to query with on the URL. There are some good MySQL examples, as well as good regular expression examples. | Last modified: 11 November 2006 02:39:30 PM |
| view_feedback.phps | This displays the page with submitted feedback about my website. It pulls all this data out of my backend MySQL database. It also does some percentage computations, etc., and then pulls out user-submitted comments by month, and displays a list to select from to view comments from that month. This is the file you want to look at if you have PHP questions, since it covers quite a bit of material in one file. |
Last modified: 27 November 2001 07:19:52 AM |