diff options
author | sijanec <sijanecantonluka@gmail.com> | 2020-05-20 14:29:27 +0200 |
---|---|---|
committer | sijanec <sijanecantonluka@gmail.com> | 2020-05-20 14:29:27 +0200 |
commit | 9f42af73101393f57ac653bbbdf2940b2de1f202 (patch) | |
tree | eab5d48103a4b6fc62af201fe799ee3edfe296f9 /server/report/index.php | |
parent | # (diff) | |
download | beziapp-9f42af73101393f57ac653bbbdf2940b2de1f202.tar beziapp-9f42af73101393f57ac653bbbdf2940b2de1f202.tar.gz beziapp-9f42af73101393f57ac653bbbdf2940b2de1f202.tar.bz2 beziapp-9f42af73101393f57ac653bbbdf2940b2de1f202.tar.lz beziapp-9f42af73101393f57ac653bbbdf2940b2de1f202.tar.xz beziapp-9f42af73101393f57ac653bbbdf2940b2de1f202.tar.zst beziapp-9f42af73101393f57ac653bbbdf2940b2de1f202.zip |
Diffstat (limited to 'server/report/index.php')
-rw-r--r-- | server/report/index.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/server/report/index.php b/server/report/index.php index c0ac172..6763a29 100644 --- a/server/report/index.php +++ b/server/report/index.php @@ -26,6 +26,20 @@ http_response_code(500); die("database connection failed. ".$warning); // . $conn->connect_error); } + + $query = "CREATE TABLE IF NOT EXISTS error_reports ( + msg VARCHAR(420) , + url VARCHAR(420) , + line INT , + column INT , + obj VARCHAR(420) , + ua VARCHAR(420) , + app_version VARCHAR(420) , + previous_commit VARCHAR(69) , + ip VARCHAR(69) , + )"; + $result = mysqli_query($dbConnection, $conn); + $stmt = $conn->prepare("INSERT INTO error_reports (msg, url, line, column, obj, ua, app_version, previous_commit, ip) VALUES". "(?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"); $stmt->bind_param("ssiisssss", $_REQUEST["error"]["msg"], $_REQUEST["error"]["url"], $_REQUEST["error"]["line"], |