Admin page with SQL table creation and insertion
diff --git a/php/utils.php b/php/utils.php
index 9a283c3..19b9146 100644
--- a/php/utils.php
+++ b/php/utils.php
@@ -20,7 +20,7 @@
 		$conn->set_charset("utf8");
 		
 		// Execute query and save result
-		$result = $conn->query($query);
+		if (!$result = $conn->query($query)) echo $conn->error;
 		
 		// Close the connection 
 		$conn->close();