English 中文(简体)
呼吁不明确的职能,以重建目标——html() 如何确定?
原标题:Call to undefined function recaptcha_get_html() How to fix?
  • 时间:2010-04-29 21:42:00
  •  标签:
  • php

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 ;

当然,要由你们来调整道路,使之适应档案。

问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

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 ...

please can anyone check this while loop and if condition

<?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 = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

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 ...

Text as watermarking in PHP

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?

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 ...

热门标签