Orthon wrote:after submitting application i get this error
Fatal error: Cannot redeclare validate_mail() (previously declared in /home/****/*****/****/mainfile.php:1440) in /home/****/*****/*****/modules/Application/validateEmailFormat.php on line 69
thanks for any help
That's really strange that it's giving you a redeclare error, because that's not the name of the function in validateEmailFormat.php...
try adding this line to confirm.php
Change Line 176 from
- Code: Select all
include("validateEmailFormat.php"); //This is the file that actually does the checking
to
- Code: Select all
if(!function_exists('validateEmailFormat'))
include("validateEmailFormat.php"); //This is the file that actually does the checking
Let me know if that fixes it for you.