Renamed ajax to _ajax
[mirrors/Kyberia-bloodline.git] / wwwroot / _ajax / testing.php
diff --git a/wwwroot/_ajax/testing.php b/wwwroot/_ajax/testing.php
new file mode 100644 (file)
index 0000000..a5d2a1b
--- /dev/null
@@ -0,0 +1,13 @@
+<?php
+error_reporting(1);
+session_start();
+require('../config/config.inc');
+require(INCLUDE_DIR.'database.inc');
+$db=new CLASS_DATABASE();
+
+$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')");
+while ($set->next()){
+echo $set->getString('user_id')." ; ".$set->getString('last_action')."<br>";
+}
+
+?>
This page took 0.099508 seconds and 4 git commands to generate.