Basically, I want a user to be able to register with the same email address a maximum of 7 times.
What sort of code would i need to use?
Currently i have:
// Process email address.
if ($email1 == "") { $errors++; $errorlist .= "Email field is required.<br />"; }
if (...
Basically, I want a user to be able to register with the same email address a maximum of 7 times.
What sort of code would i need to use?
Currently i have:
// Process email address.
if ($email1 == "") { $errors++; $errorlist .= "Email field is required.<br />"; }
if (...