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