无法集成 dracon flash 验证码

发布于 2024-10-08 02:13:48 字数 540 浏览 0 评论 0原文

我尝试将此验证码 http://www.dracon.biz/captcha.php 实现为脚本

但这似乎真的很难我无法做到。

我尝试制作一个测试 php 页面,但也没有成功。

session_start();

# ~~~ CAPTCHA Form Submit ~~~~~~~~~~ # 
if ($_SERVER['QUERY_STRING'] == 'final') {
  if ($_SESSION['secCode_ok'] === true) {
    $_SESSION['secCode_ok'] = false;  // reset old results

然后传递并执行查询。

<input id="sec_code" class="input_captcha" maxlength="5" />

有人可以帮我获取一个工作示例文件吗?

I tried to implement this captcha http://www.dracon.biz/captcha.php to a script

But It seems really hard i wasn't able to do it.

I tried to make a test php page but it wasn't successful either.

session_start();

# ~~~ CAPTCHA Form Submit ~~~~~~~~~~ # 
if ($_SERVER['QUERY_STRING'] == 'final') {
  if ($_SESSION['secCode_ok'] === true) {
    $_SESSION['secCode_ok'] = false;  // reset old results

then pass and execute query.

<input id="sec_code" class="input_captcha" maxlength="5" />

Can someone help me to get a working example file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柒七 2024-10-15 02:13:48

我只能从论坛找到这些安装详细信息 => http://forum.dracon.biz/viewtopic.php ?f=15&t=254&sid=ebb781531585ee16ab8574ba66ed3d14
但我不知道验证码解决方案。为什么要使用这个脚本。我不喜欢这个解决方案,因为:

  • 不必要的闪存依赖性,大多数时候闪存下载量很大。
  • 糟糕的文档(不?无法正确帮助您)。

如果你问我,这个解决方案会容易得多。

因为

  • 主持。
  • 适当的文档。

I could only find these installation details from the forum => http://forum.dracon.biz/viewtopic.php?f=15&t=254&sid=ebb781531585ee16ab8574ba66ed3d14.
But I don't know that captcha solution. Why do you want to use this script. I don't like this solution because of:

  • unnecessary flash dependency, most of the times flash downloads are bulky.
  • bad documentation(no? Can't help you properly).

This solution are much easier if you ask me.

because

  • hosted.
  • proper documentation.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文