当我将这段代码集成到一个html文件中时,它什么也没有显示,但是当它与其他html代码分开时它就可以工作。
那么,是否有人可以教我如何将其添加到HTML代码并将表单输入与$chars
进行比较?
require_once "/jpgraph/jpgraph_antispam.php";//the location is correct!!
$spam = new AntiSpam();
// saved to $chars for later verification of correct entry
$chars = $spam->Rand(8);
$spam->Stroke() ;
答案 0 :(得分:0)
jpgraph返回原始图像,您不能将它们包含在HTML标记中。
将captcha.php包含为HTML中的图像
<img src="captcha.php" />
答案 1 :(得分:0)
我挣扎于此,结果我们忘记在我们的linux(Centos)服务器上安装GD
yum install php-gd
在jpgraph anti spam.php
中调用imagejpeg需要它