PHP Classes
Icontem

File: example_db.php


  Search   All class groups All class groups   Latest entries Latest entries   Top 10 charts Top 10 charts   Newsletter Newsletter   Blog Blog   Forums Forums   Help FAQ Help FAQ  
  Login   Register  
Recommend this page to a friend! ReTweet ReTweet Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Costin T  >  AbsTemplate  >  example_db.php  
File: example_db.php
Role: Example script
Content type: text/plain
Description: Display data from database
Class: AbsTemplate
Template engine based PHP script templates
 

Contents

Class file image Download
<?php
    
require "class.AbsTemplate.php";

// Instantiate the Template class
$c = new AbsTemplate('templates','cache');

// Set a variable to hold this pages's title
$c->SetVar('page_title','Getting data out of a database');


// Set a variable to hold the template's heading
$c->SetVar('title','WP blog posts');

// Assign the template's content to a variable
$data $c->GetTemplate('show_data_db.php');

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title><?php echo $c->GetVar('page_title')?></title>
</head>
<body>

<?php
    
// Output template's content
    
echo $data;
?>

</body>
</html>

 
  Advertise on this site Advertise on this site   Site map Site map   Statistics Statistics   Site tips Site tips   Privacy policy Privacy policy   Contact Contact  

For more information send a message to :
info at phpclasses dot org.
Copyright (c) Icontem 1999-2009 PHP Classes - PHP Class Scripts
  PHP Book Reviews - Reviews of books and other products