git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
010bf84
Branches
Tags
master
ticket
webinterface.git
inc
security.php
input-filtering
bernd
commited
010bf84
at 2007-06-16 14:10:56
security.php
Blame
History
Raw
<?php function filter_input_general( $input ) { return htmlspecialchars(iconv('UTF-8', 'UTF-8', $input), ENT_QUOTES, 'UTF-8'); } function filter_input_username( $input ) { return ereg_replace("[^[:alnum:]\_\.\+\-]", "", $input ); } ?>