PHP
  Home arrow PHP arrow Page 5 - PHP Fast Template
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Sun Developer Network 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Mobile Linux 
App Generation ROI 
VPS Hosting 
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? 
PHP

PHP Fast Template
By: Ian Felton
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 16
    2001-07-02

    Table of Contents:
  • PHP Fast Template
  • Assigning templates to objects
  • Assigning variables to FastTemplate objects
  • MySQL Data parsed through FastTemplates
  • Multiple templates: Rows of data into a table
  • Summary

  • 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


    PHP Fast Template - Multiple templates: Rows of data into a table


    (Page 5 of 6 )

    Perhaps the data needed for the web page is a table of records from a database. The best way to present it would be through a table. With FastTemplate this can be accomplished cleanly. Look at this variation on the previous example to see how its done.

    <?php //getData.php include "class.FastTemplate.php3"; //instantiate a new FastTemplate instance $tpl = new FastTemplate("../templates"); //associate three HTML templates to a variables //toplevel is the parent document, table is parent to the rows template, //rows contains the data $tpl->define(array( "toplevel" => "phone_numbers.tpl" "table" => "table.tpl", "rows" => "rows.tpl" )); //Connect to database mysql_connect (localhost, root, passwd); //select database to use mysql_select_db (testDB); //select entire set of records from MySQL database for example code $GetData = mysql_query ("select Phone from Business"); //Get array results if ($GetDataArray = mysql_fetch_array($GetData)) { do { //Associate contents of hash array with variable $Phone = $GetDataArray["Phone"]; //assign $Phone to FastTemplate instance $tpl->assign("PHONE", $Phone); //concatenate each row of data as the do //loop cycles through the array of records $tpl->parse(ROWS, ".rows"); }while ($GetDataArray = mysql_fetch_array($GetData)); //when all the records have been obtained //and parsed through the ROWS template, //parse the entire table $tpl->parse(PHONERECORDS, "table"); //pass the data to the HTML template $tpl->parse(MAIN, "toplevel"); $tpl->FastPrint(); } //if no records found, print error message else { print("Error obtaining data."); } ?>
    In this example, the data for PHONE will be parsed through the ROWS (rows.tpl) template which looks like this:

    <TR> <TD> {PHONE} </TD> </TR>
    Each row will be connected to the end of the previous one. Once they have all been parsed, the entire set will be parsed as whole and placed in the TABLE (table.tpl) template, which looks like this:

    <TABLE> {ROWS} </TABLE>
    Finally, the entire table of records will parsed through the parent template which looks like this:

    <HTML> <BODY> <P> Record of phone numbers: {PHONERECORDS} </P> </BODY> </HTML>
    Now the entire set of data has been parsed and displayed to the screen cleanly formatted and completely separate from logic. At this point, designers can edit the template files for different fonts, images, text, etc. and leave the code alone.

    More PHP Articles
    More By Ian Felton


       · I worked on a project that was implemented using a template, like this. The CPU...
       · I have been working on several projects using Fast Template now. The setup is so...
     

       

    PHP ARTICLES

    - Working With Different Namespaces in PHP 5
    - User Management Explained: Overview
    - Using Namespaces in PHP 5
    - Database Security: Guarding Against SQL Inje...
    - Building a Modular Exception Class in PHP 5
    - Database and Password Security for Web Appli...
    - Handling MySQL Data Set Failures in PHP 5
    - Building Site Registration for Web Applicati...
    - Intercepting Customized Exceptions in PHP 5
    - Securing Your Web Application Against Attacks
    - Sub Classing Exceptions in PHP 5
    - Authentication for Web Application Security
    - Building a Content Management System with Co...
    - Filters and Login Systems for Web Applicatio...
    - Working with the Email Class in Code Igniter





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