thank you. but you have missed the email confirm feild, i just want to say it to other users may have same my problem
1.find:
$email = trim($email);
2.write down it:
if (substr(strtolower($email),0,4)=="www.") {
$email=substr($email,4);
}
3. find:
$emailconfirm = trim($emailconfirm);
4. write down it:
if (substr(strtolower($emailconfirm),0,4)=="www.") {
$emailconfirm=substr($emailconfirm,4);
}
|