Alright, simple problem. (I think)
On my register page, I simply want to disallow any email from hotmail.com to register. So in my register2 function, I put this:
$result = preg_match('/hotmail.com$/i', $member['email']);
if($result) {
fatal_error(Baaad email);
}
This breaks the page when you submit though. (white screen)
Anyone set me straight?
Thanks,
Methonis