Database-ingangen opschonen - CSS-trucs

Anonim

1) Functie voor het verwijderen van kwaadaardige bits

 .*?@si', // Strip out javascript '@<(\/\!)*?(^)*?>@si', // Strip out HTML tags '@)*?>.*?@siU', // Strip style tags properly '@@' // Strip multi-line comments ); $output = preg_replace($search, '', $input); return $output; ) ?>

2) Ontsmettingsfunctie

Gebruikt de bovenstaande functie en voegt schuine strepen toe om databasefuncties niet te verknoeien.

$val) ( $output($var) = sanitize($val); ) ) else ( if (get_magic_quotes_gpc()) ( $input = stripslashes($input); ) $input = cleanInput($input); $output = mysql_real_escape_string($input); ) return $output; ) ?>

Gebruik