Hello完全照搬了以下错误。 我试图把档案存放在任何地方,一是不能,一是站不住脚的。 还有一点要做这项工作? 由此可见的是错误。
Fatal error: Call to undefined function recaptcha_get_html() in /home/folder/public_html/site/views/users/register.php on line 75
Hello完全照搬了以下错误。 我试图把档案存放在任何地方,一是不能,一是站不住脚的。 还有一点要做这项工作? 由此可见的是错误。
Fatal error: Call to undefined function recaptcha_get_html() in /home/folder/public_html/site/views/users/register.php on line 75
<><<>tcaptcha_get_html> > 功能必须从你重新尝试使用该功能的档案中<>>可观测:为了能够称这一功能,PHP必须知道该功能。
Here, you are using this function in register.php
.
但这一职能是在另一个档案中确定的(I guess)。
Which means you have to include or require that other file, from register.php
(or another file that s required by it).
见<<<<><<><><>>>><>>>><>>t/require” rel=“nofollow noretinger”><>><>>>>>和 rel=_nofollow noreferer”>include
<>>>>>>>/strong>>>>>。
For example, at the beginning of register.php
, you could have something like this :
require_once dirname(__FILE__) . /../libraries/recaptcha.php ;
当然,要由你们来调整道路,使之适应档案。
I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...
<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...
I found this script online that creates a thumbnail out of a image but the thumbnail image is created with poor quality how can I improve the quality of the image. And is there a better way to create ...
如何确认来自正确来源的数字。
Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...
I wonder there is a way to post a message to a facebook business page with cURL? thanks
I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...
How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...