How to “Validate” Human Names in CakePHP?

RavenStar

New Member
I have a PHP script that is supposed to check for "valid" human names, but recently cracked against a name with a space, so we added spaces to our validator.
Rather than doing this, is there a way to add a blacklist to CakePHP's validator to block all "invalid" characters, rather than allowing "valid" ones? NOTE: I know how to do this in PHP (generally) but using CakePHP's validator syntax is different.
 
Back
Top