Adding test.php file to do some production server debugging for database logging

Signed-off-by: Edouard Poitras <edouard@eclipse.org>
diff --git a/test.php b/test.php
new file mode 100644
index 0000000..edab379
--- /dev/null
+++ b/test.php
@@ -0,0 +1,13 @@
+<?php
+error_reporting(E_ALL);
+ini_set('display_errors', 1);
+require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
+require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/evt_log.class.php");
+$EventLog = new EvtLog();
+$EventLog->setLogTable("__paypal.class"); // To make browsing the log table easier
+$EventLog->setPK1('test');
+$EventLog->setPK2($_SERVER['REMOTE_ADDR']);
+$EventLog->setLogAction("one");
+$EventLog->insertModLog('two');
+print_r('done');
+?>