[go: up one dir, main page]

Menu

[2a284d]: / www / privacy.php  Maximize  Restore  History

Download this file

25 lines (16 with data), 515 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
session_start();
require_once("smarty/Smarty.class.php");
$tpl = new Smarty();
require_once("header1.php");
// Assign breadcrumbs
$breadcrumbs = array();
$breadcrumbs[] = array('text' => 'COMTOR', 'href' => 'index.php');
$breadcrumbs[] = array('text' => 'Privacy Policy', 'href' => '#');
$tpl->assign('breadcrumbs', $breadcrumbs);
// Fetch template
$tpldata = $tpl->fetch("privacy.tpl");
$tpl->assign('tpldata', $tpldata);
// Display template
$tpl->display("htmlmain.tpl");
?>