summaryrefslogtreecommitdiff
blob: 34e81b5317c68a8123dc98dde53401319674b920 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php 

include('Smarty.class.php');
#require_once('Frodo.php');
#if(!isset($_SESSION['userid'])) {
	#print "<h1>NO MATCH</h1>";
#	header("Location: login.php");
#}
#else {
#	print "Welcome $_SESSION[userid]<br>";
#}

$smarty = new Smarty;
#phpinfo();
$smarty->template_dir = './templates';
$smarty->compile_dir = './templates_c';
$smarty->cache_dir = './cache';
$smarty->config_dir = './configs';


$smarty->assign('advanced',True);
$smarty->display('index.tpl');


# print "Welcome to WebGLI.  This is the index page.  It has index-y stuff on it. ok?";





?>