PHP expert |
|
<?
if (preg_match('[a-zA-Z0-9_-=!@%&()\[\]\{\}\.,\?]+', '$xD'] === false) {
echo 'false!';
} else {
echo 'huh?';
}
?>
<? if (preg_match('[a-zA-Z0-9_-=!@%&()\[\]\{\}\.,\?]+', '$xD'] === false) { } else { } ?>
deze onzin code heeft niemand jou gegeven, je gebruikt het zo:
if( preg_match('~[a-zA-Z0-9_-=!@%&()\[\]\{\}\.,\?]+~', $string) )
{
// juiste invoer
}
if( preg_match('~[a-zA-Z0-9_-=!@%&()\[\]\{\}\.,\?]+~', $string) ) { // juiste invoer }
|