commit | 99bb77c461f6e5dc41805e78a8e54927718ff1fd | [log] [tgz] |
---|---|---|
author | avm99963 <jocdeladria@gmail.com> | Mon Jan 27 03:15:08 2020 +0100 |
committer | avm99963 <jocdeladria@gmail.com> | Mon Jan 27 03:15:08 2020 +0100 |
tree | 5d39d36d3f747f3bd884cd215f1208aca6a43d85 |
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); + } +}