PHP
  Home arrow PHP arrow Page 3 - Web Development With PHP FastTemplate
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
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? 
Google.com  
PHP

Web Development With PHP FastTemplate
By: icarus, (c) Melonfire
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 9
    2001-09-05


    Table of Contents:
  • Web Development With PHP FastTemplate
  • Who Am I?
  • Proofing The Pudding
  • You've Got Mail
  • Repeat Customers
  • Flavour Of The Month
  • A Strict() Master
  • Musical Chairs
  • A Rose By Any Other Name...

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log 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


    Web Development With PHP FastTemplate - Proofing The Pudding
    ( Page 3 of 9 )

    Next, we need to tell FastTemplate about the template, assign values to the variables, and put the two together. Here's the script:

    <? // mypage.php - generate output using FastTemplate // include class file include("class.FastTemplate.php3"); // instantiate new object $obj = new FastTemplate("."); // assign names for template files // "index" now references the template "./mypage.tpl" $obj->define(array("index" => "mypage.tpl")); // assign values to FT variables within the template // this may also be set up as an associative array of key-value pairs $obj->assign("FNAME", "John"); $obj->assign("LNAME", "Doe"); $obj->assign("AGE", "36"); $obj->assign("TEL", "(12)-34-567 8912"); $obj->assign("EMAIL_ADDRESS", "jdoe@anonymous.com"); // parse template "index" and store in handler "result" $obj->parse(result, "index"); // print contents of handler "result" $obj->FastPrint(result); ?>
    A quick explanation is in order here.

    1. The first step when using the FastTemplate class is to create a new FastTemplate object, and tell it the location of the template files.

    <? include("class.FastTemplate.php3"); $obj = new FastTemplate("."); ?>
    In this case, there's only one template and it's in the current directory.

    2. Next, the define() method is used to assign names to the templates you plan to use through the script - these names are defined in an associative array, and will be used throughout the remainder of the script to refer to the respective template files. In this case, I've used the name "index" to refer to the template "mypage.tpl".

    <? $obj->define(array("index" => "mypage.tpl")); ?>
    3. Once FastTemplate knows which templates to use, and has names by which it can refer to them, the next step is to assign values to the variables in the templates. As you can see from "mypage.tpl" above, it contains five variables - the assign() method is used to assign values to these variables

    <? $obj->assign("FNAME", "John"); $obj->assign("LNAME", "Doe"); $obj->assign("AGE", "36"); $obj->assign("TEL", "(12)-34-567 8912"); $obj->assign("EMAIL_ADDRESS", "jdoe@anonymous.com"); ?>
    Variables may also be assign()ed values via an associative array containing key-value pairs - you'll see that technique in the next example.

    4. With the variables assigned values, it's time to put the two together. This is accomplished via FastTemplate's parse() method, which is easily the most important method in the object collection.

    The parse() method accepts two arguments - a variable name, and a template name. In this example, the variable is called RESULT, and the template is named "index" (which references the template "mypage.tpl").

    <? $obj->parse(result, "index"); ?>
    In English, the line of code above means "read the template referenced by the name "index", assign values to the variables found within it, and then assign the result, complete with substituted values, to the variable "result"." Whew!

    5. At this point, the variable "result" contains the final page output - all that remains is to print it to the browser.

    <? $obj->FastPrint(result); ?>
    The FastPrint() function prints the result of the last parse() function call - or you can specify the name of the variable to be printed, as above.

    Here's what it looks like:



    Since the HTML interface is in a separate template file, it's easy for designers with no programming experience to radically alter the interface without affecting the program code...so long as they remember to replace the placeholders when they're done. As an illustration, here's a completely reworked version of "mypage.tpl"

    <!-- begin: mypage.tpl --> <html> <head> </head> <body> <table border="1" cellpadding="5"> <tr> <td bgcolor=black><i><font color=white>First name</font></i></td> <td bgcolor=black><i><font color=white>Last name</font></i></td> <td bgcolor=black><i><font color=white>Tel</font></i></td> <td bgcolor=black><i><font color=white>Email address</font></i></td> <td bgcolor=black><i><font color=white>Age</font></i></td> </tr> <tr> <td>{FNAME}</td> <td>{LNAME}</td> <td>{TEL}</td> <td><a href="mailto:{EMAIL_ADDRESS}">{EMAIL_ADDRESS}</a></td> <td>{AGE}</td> </tr> </table> </body> </html> <!-- end: mypage.tpl -->
    which looks like this:



    By using FastTemplate, this interface modification was accomplished solely by modifying the template file, leaving the scripting routines untouched.

     
     
    >>> More PHP Articles          >>> More By icarus, (c) Melonfire
     

       

    PHP ARTICLES

    - Merging a File Split for FTP Upload using PHP
    - Getting Data from Yahoo Site Explorer Inboun...
    - Method Chaining: Adding More Selecting Metho...
    - How to Split a File During an FTP Upload Usi...
    - Expanding a Custom CodeIgniter Library with ...
    - Using the Yahoo Site Explorer Inbound Links ...
    - Building a CodeIgniter Custom Library with M...
    - Building an E-mini Trading System Using PHP ...
    - Completing the MySQL Class with Method Chain...
    - Building Dynamic Queries with Chainable Meth...
    - PHP Encryption and Decryption Methods
    - Building a MySQL Abstraction Class with Meth...
    - Completing a Sample String Processor with Me...
    - Mastering WHILE Loops for PHP and MySQL
    - Method Chaining: Adding More Methods to the ...





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