removed tz
[mirrors/Kyberia-bloodline.git] / wwwroot / ajax / testing.php
CommitLineData
51ff3226 1<?php
2error_reporting(1);
3session_start();
4require('../config/config.inc');
5require(SYSTEM_ROOT.'inc/database.inc');
6$db=new CLASS_DATABASE();
7
8$set=$db->query("select user_id,last_action from users where (user_id > 2334 and user_id < 123456 and last_action like '2005-11-06 00:00:02')");
9while ($set->next()){
10echo $set->getString('user_id')." ; ".$set->getString('last_action')."<br>";
11}
12
13?>
This page took 0.100681 seconds and 4 git commands to generate.