Strict but sane Error reporting system
[mirrors/Kyberia-bloodline.git] / wwwroot / _ajax / testing.php
1 <?php
2 error_reporting(E_ALL | E_STRICT);
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.281647 seconds and 4 git commands to generate.