PHP Classes

File: example_db.php

Recommend this page to a friend!
  Classes of Costin Trifan   AbsTemplate   example_db.php   Download  
File: example_db.php
Role: Example script
Content type: text/plain
Description: Display data from database
Class: AbsTemplate
Template engine based PHP script templates
Author: By
Last change:
Date: 14 years ago
Size: 830 bytes
 

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>