Added input sanitize functions. The new system works by merging $_GET and $_POST...
authorRobert Sesek <rsesek@bluestatic.org>
Sat, 22 Jan 2005 21:52:53 +0000 (21:52 +0000)
committerRobert Sesek <rsesek@bluestatic.org>
Sat, 22 Jan 2005 21:52:53 +0000 (21:52 +0000)
commitd9f27676785cf39facff076a9f020dd8302592e0
tree99b7b6fbffa52bdff22b83ed7644440c9a2c860f
parentb73c57b42890f6ea7f6494bec25e4199056c86d2
Added input sanitize functions. The new system works by merging $_GET and $_POST, running them through a unicode-safe htmlspecialchars() and storing it in _isso::input. Then this can be accessed; and proper data manipulation (intval(), floatval(), _isso::escape) can be run on it. _isso::escape uses a variety of escape functions from none (Magic Quotes on), to mysql_real_escape_string() (have a valid DB connection), to just addslashes() (neither of the previous two).
functions.php
kernel.php