![]()
Codice PHP:function block_char ($name) {
$valori = array('<', '>', '"', "'", '$', '(', ')', ';');
foreach ($valori AS $v) {
if (strstr($name, $v)) {
return FALSE;
}
return TRUE;
}
}
![]()
Codice PHP:function block_char ($name) {
$valori = array('<', '>', '"', "'", '$', '(', ')', ';');
foreach ($valori AS $v) {
if (strstr($name, $v)) {
return FALSE;
}
return TRUE;
}
}
Questa volta, più che un voto.. è favoreggiamento.