What's wrong with this?
if((preg_match('[a-zA-Z]{1,7}+',$_POST['naam'])) and (preg_match('[^\@\#\<\>\&\*\/]+[a-zA-Z0-9]+!',$_POST['password'])))
the first regex i want a string of 1-7 long containing only alphabetic letters.
The second regex i want a string containing letters and numbers with an ! at the end.