Filter get and post-vars
- We don't not distinguish security between post-,get- and cookie-vars because any of them can be easily forged. We create a joined assoc array and filter for too long variables and html-tags. Additional security-checks should be done later in db- and field-classes.
- passed parames should always be accessed like;
$f_person_name= get('person_name');
- You CAN NOT access $_GET, $_POST and $_COOKIE-vars directly (because they are cleared)!
- for additional information see std/common.inc
Definition at line 313 of file index.php.