Allowing the function to disable all email masks
Hence allowing specific email masks.
Eg. Only people who are @hotmail.com can register no-one else etc.
http://www.simplemachines.org/community/index.php?topic=12749.0
$alloweddomains = array('ugrad.unimelb.edu.au', 'student.rmit.edu.au');
for each ($alloweddomains as $domain) {
if (stristr($[INPUT E-MAIL], $domain) {
// some routine here to tell them
}
}
would this solve my problem in some way?
hey any assistance?