Re: Need Help With ReCaptcha
Most likely, the function is contained in an external file, and the include that points to that file is not working. There are two types of PHP includes, include() and require(), and if you use include(), the script will execute even if the inclusion fails. Try changing it to require(), which will break the script when it fails. That should at least narrow down the source of the problem, and possibly give you a meaningful error message to troubleshoot.
__________________
The best way to learn anything, is to question everything.
|