]> andersk Git - sql-web.git/blob - test.php
first stab at 0.2
[sql-web.git] / test.php
1 <?php
2
3 require_once('mitsql.cfg.php');
4 require_once('mitsql.lib.php');
5
6 /*
7 include 'phpinfo.php';
8 exit;
9 */
10
11 $thisPath=pathinfo($_SERVER['SCRIPT_NAME']);
12
13 session_set_cookie_params(0, $thisPath['dirname']);
14 @session_start();
15
16 if (isSess('i')) {
17     sess('i', sess('i')+1);
18 } else {
19     echo sess('i', 1);
20 }
This page took 0.395413 seconds and 5 git commands to generate.