First prototype
diff --git a/inc/security.php b/inc/security.php
new file mode 100644
index 0000000..d90629f
--- /dev/null
+++ b/inc/security.php
@@ -0,0 +1,6 @@
+<?php
+class security {
+  public static function htmlsafe($string) {
+    return htmlspecialchars($string);
+  }
+}