|
hi
my problem is i need to Know what the value of std.tpl in this code and how use it
<?
require_once('lib/template.php');
$page = new Page('std.tpl');
$page->replace_tags(array(
'title' => 'title',
'user_bar' => 'dat/user_bar.dat',
'navigation' => 'dat/navigation.dat',
'main' => 'dat/index.dat',
'affiliates' => 'dat/affiliates.dat',));
$page->output();
?>
|