MySQL
  Home arrow MySQL arrow Page 3 - 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 
Sun Developer Network 
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 folder


    (Page 3 of 5 )

    We shall now take a quick look at an equivalent function for reading the template from a directory:

    function gettemplate($templatename) {

    global $templatecache;

    #check if template has already been loaded

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

    #return cached version

    $template = $templatecache[$templatename];

    } else {

    #retrieve from file

    $handle = fopen("./templates/".$name,"r");

    $template = fread($handle,filesize("./files/pages/".$name.".php");

    #close the file

    fclose($handle);

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

    #cache the contents

    $templatecache[$name] = $template;

    }

    return $template;

    }


    This function does exactly the same as the last, but instead loads the template from a /templates/ directory (with a no file extension).

    Now that we have our function for reading a template, we can go about using one. Firstly, however, insert the following 2 templates into the database table, or into two files, depending on the method you wish to use:

    Template Name: ResultsPage

    <html>

    <head>

    <title>$pagetitle</title>

    </head>

    <body>

    <h1>$pagetitle</h1>

    <p>Below are the results of the search for '$searchquery'</p>

    <table border="0">

    <tr>

    <td><b>Title</b></td>

    <td><b>Hits</b></td>

    </tr>

    $resultbits

    </table>

    </body>

    </html>


    Template Name: ResultsBit

    <tr>

    <td><b><a href="view.php?id=$data[id]">$data[title]</a></td>

    <td><b>$data[hits]</b></td>

    </tr>

    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 ...


     
    Best Practices for Windows Vista Migration Presentation
    Dell and Microsoft recently held a series of face-to-face seminars entitled, &qu....

     
    Creating a Culture for Code Reuse
    If you oversee development teams you know that like it or not proprietary and ex....

     
    Keys to Web Application Acceleration: Advances in Delivery Systems
    Accelerate Web apps by up to 5x. Ensure significantly faster access to the Web a....

     
    Optimizing Application Monitoring
    Tired of finding out from your customers that you're offline? This white paper e....

     
    Solaris to Solaris Migration -- Migrating applications from Sun SPARC to Dell PowerEdge R900
    This comprehensive Migration Guide reviews the approach that Principled Technolo....

     





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway
    Stay green...Green IT