MySQL
  Home arrow MySQL arrow Page 2 - Implementing a Template Based Web Site Wit...
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
MYSQL

Implementing a Template Based Web Site With PHP
By: James Crowley
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 5
    2002-04-09

    Table of Contents:
  • Implementing a Template Based Web Site With PHP
  • Templates in a database
  • Templates in a folder
  • The PHP Code
  • Conclusion

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Implementing a Template Based Web Site With PHP - Templates in a database


    (Page 2 of 5 )

    Our example (which is the same method used on my site) uses a number of templates stored in either a MySQL database or a directory. Each template contains static HTML content, as well as 'variable' tags that will be replaced with data by your PHP script. Lets take a look at one possible template:

    <html>

    <head>

    <title>$pagetitle</title>

    </head>

    <body>

    <h1>$pagetitle</h1>

    <p>$pagetext</p>

    </body>

    </html>


    As you can see, the template is made up of standard html elements, but also includes PHP variables, such as $pagetitle. These will eventually be replaced with values specified in our script. First however, we'll create a function to read these templates. In fact, we'll create two: one that uses the database method, and one that uses the directory method. You can use either, and both will work throughout the rest of this tutorial.

    Here's create the database function:

    function gettemplate($templatename)

    {

    global $templatecache;

    #check if template has already been loaded

    if ($templatecache[$templatename]!="") {

    #return cached version

    $template = $templatecache[$templatename];

    } else {

    #retrieve from database

    $query = mysql_query("SELECT content FROM templates WHERE name='$templatename'");

    if (mysql_num_rows($queryid)!=0) {

    #get the db field

    $template = mysql_result($query,"content");

    #replace \" with \\" ... this will be needed later in the script

    $template = str_replace("\"","\\\"",$template);

    #cache the contents

    $templatecache[$name] = $template;

    } else {

    $template="";

    }

    }

    return $template;

    }


    The function shown above is very simple. Firstly it checks to see if we have a copy of the template in cache (to save time accessing the database or file system again). If it hasn't, then it queries the database and gets the content field. Please note that the previous code assumes that you have already established a connection to the database and selected the database using mysql_connect and mysql_select_db. The function also requires a table in the database called templates, created using the following MySQL statement:

    CREATE TABLE templates (

    id int unsigned NOT NULL AUTO_INCREMENT PRIMARY KEY,

    name varchar(30) NOT NULL,

    content LONGTEXT NOT NULL DEFAULT '',

    UNIQUE (name)

    );

    More MySQL Articles
    More By James Crowley


     

    MYSQL ARTICLES

    - MySQL and BLOBs
    - Two Lessons in ASP and MySQL
    - Lord Of The Strings Part 2
    - Lord Of The Strings Part 1
    - Importing Data into MySQL with Navicat
    - Building a Sustainable Web Site
    - Creating An Online Photo Album with PHP and ...
    - Creating An Online Photo Album with PHP and ...
    - PhpED 3.2 – More Features Than You Can Poke ...
    - Creating An Online Photo Album with PHP and ...
    - Creating An Online Photo Album with PHP and ...
    - Security and Sessions in PHP
    - Setup Your Personal Reminder System Using PHP
    - Create a IP-Country Database Using PERL and ...
    - Developing a Dynamic Document Search in PHP ...







    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 4 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek