Blog
- Database connection
- Query from items where category is blog
- Display data by latest date first
- Implement pagination
options
- View comments
- Add comments
- Display a particular news item (link in title) and show comments in that view (limit)
Articles
- Database connection
- Query from items where category is articles
- Display data by latest date first
- Display title and first paragraph
- Link title to full article
options
- View comments
- Add comments
Projects
Same as articles, just different category.
Contact and about section
- Database connection
- Query from items where category is either contact or about
- Display title and content
Photoblog
All PHP driven
That's everything i've got for the display. The database connection happens quite a lot so would it be wise to include the db connection in a seperate PHP file and then require it in all the db queries? Doing a detailed design on the admin section now