1 2 3 4 5 6 7 8 9 10
<?php session_start(); require_once('vendor.inc.php'); $smarty = new Smarty; $smarty->assign('loggedin', isset($_SESSION['username'])); $smarty->display('contact.tpl'); ?>