summaryrefslogtreecommitdiff
path: root/docs/input-filter.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/input-filter.md')
-rw-r--r--docs/input-filter.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/input-filter.md b/docs/input-filter.md
index bca7f29ad2..c5307a2155 100644
--- a/docs/input-filter.md
+++ b/docs/input-filter.md
@@ -1,5 +1,4 @@
-Input Filter Support in PHP 5
------------------------------
+# Input Filter Support in PHP 5
XSS (Cross Site Scripting) hacks are becoming more and more prevalent,
and can be quite difficult to prevent. Whenever you accept user data
@@ -21,6 +20,7 @@ $_POST, $_GET and $_COOKIE arrays are only populated with stripped
data. In this simple example all I am doing is calling strip_tags() on
the data.
+```
ZEND_BEGIN_MODULE_GLOBALS(my_input_filter)
zval *post_array;
zval *get_array;
@@ -180,3 +180,4 @@ PHP_FUNCTION(my_get_raw)
RETVAL_FALSE;
}
}
+```