aboutsummaryrefslogtreecommitdiffstats
path: root/web/php/pzreadtest.php
diff options
context:
space:
mode:
Diffstat (limited to 'web/php/pzreadtest.php')
-rw-r--r--web/php/pzreadtest.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/web/php/pzreadtest.php b/web/php/pzreadtest.php
new file mode 100644
index 0000000..b67ae9e
--- /dev/null
+++ b/web/php/pzreadtest.php
@@ -0,0 +1,9 @@
+<?php
+ require_once('notice.inc.php');
+
+ function center_result_event($uid,$msg){
+ $db = db_connect();
+ notice::add($db,NOTICE_TYP_USR,$uid,json_encode($msg));
+ db_close($db);
+ }
+?>