PHP:验证码问题

发布于 2024-07-29 12:55:26 字数 323 浏览 2 评论 0 原文

我有一个 PHP 中的用户注册表单。我在页面中放入了验证码图像检查。我像这样使用它

//img id="imgCaptcha" src="create_image.php"//

在我的 javascript 中我想用它来验证它与图像中生成的数字相同(来自 create_image.php 页面)。 该数字也在会话变量中设置。 但是当我从 SESSION 获取数字时,我得到了上一个生成的数字。但是当我发布该页面时,我得到了由 SESSION 的 create_image.php 生成的正确数字。

那么,如何在不从 SESSION 发布该页面的情况下获取最近生成的号码?

I have a user registration form in PHP .I put captcha image check in the page.I used it like this

//img id="imgCaptcha" src="create_image.php"//

and in my javascript i want to validate this with the same number which is generated in the image (from create_image.php page) . That number was set in a session variable too. but when I get number from SESSION that time I get previous one generated number.but when I POST that page I get correct one generated by create_image.php from SESSION.

so,how can I get recently generated number without posting that page from SESSION?

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

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

发布评论

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

评论(1

北斗星光 2024-08-05 12:55:26

问题在于,带有图像的 php 页面是在代码发布到客户端后加载的,因此当您尝试从会话中输出数字时,您会得到您所描述的结果。

在我看来,有树形解决方案:

  • 在表单的代码中生成代码,然后让 create_image.php 脚本输出它。
  • 使用ajax:调用create_image.php后,您可以使用ajax从会话中获取号码。
  • 使用现有的验证码服务,例如 http://recaptcha.net/

The problem is that the php-page with the image is loaded after the code is posted to the client, so when you try to output the number from the session, you get the result you describe.

As i see it, there are tree solutions:

  • Generate the code in your code for the form instead, and let the create_image.php script just output it.
  • Use ajax: You can use ajax to get the number from the session after the create_image.php has been called.
  • Use an existing captcha service like http://recaptcha.net/
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文