a5d2a1b8602952753c8ca2a9dfa2bec7e5ba5e0f
[mirrors/Kyberia-bloodline.git] / wwwroot / _ajax / testing.php
1 <?php
2 error_reporting(1);
3 session_start();
4 require('../config/config.inc');
5 require(INCLUDE_DIR.'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')");
9 while ($set->next()){
10 echo $set->getString('user_id')." ; ".$set->getString('last_action')."<br>";
11 }
12
13 ?>
This page took 0.270236 seconds and 3 git commands to generate.