Implementing a Template Based Web Site With PHP
(Page 1 of 5 )
Template based web sites allow you to produce dynamic web content and give your visitors the appearance that each page on your site is different. In this article James shows us how to implement a template based web site using two methods: a MySQL database and a flat file approach.
This article was contributed by James Crowley from DeveloperFusion.com. If you're after free programming tutorials, source code and reviews you can click here
A common requirement when designing a site is the ability to update the layout and HTML of the site without having to change the look and feel of every page on your web site. Template based web sites allow you to produce dynamic web content and give your visitors the appearance that each page on your site is different. Another advantage of a template based web site is that PHP and HTML code can be kept entirely separate, making for far more logical HTML and PHP coding. There are a number of ways to do this, and this tutorial covers just one method with 2 storage options: templates in a database and templates in a directory.
To test the templates in this article you should have PHP and MySQL installed on either a Windows or Linux server. You should also have an intermediate knowledge of PHP and MySQL, including how to create tables, etc.
Next: Templates in a database >>
More MySQL Articles
More By James Crowley