Jump to content

performing the human check


roguewarrior

Recommended Posts

Hey guys,

 

I've got a php form that requires the user to fill out a distorted words box for validity.

 

Before I put this in, the code was simple

 

...

<form ... action="insert.php">

...

<submit type = "submit" name = "submit" value = "register">

 

Then the insert.php page would grab the variables, such as $name, $email, etc and say "Thanks for registering, $name!" and so on.

 

That all worked great until the check was added.  If I leave insert.php in the action value for the form, it allows for the insertion without validating the check.  And if I put insert.php as a destination, like so:

 

if ($resp->is_valid) {

    header("Location: insert.php");

  } else {

    $error = $resp->error;

  }

 

Then after the validation has been made, it goes to insert.php but none of the variables get posted over.

 

Does anyone know how to fix this or what else needs to be done to make sure the check works and all of the information gets carried over?

 

Thanks in advance!

 

Link to comment
Share on other sites

I'm not clear on your situation but it looks like you're trying to use a captcha.  The idea is that when you generate the form page, you also generate a keyword.  This keyword is stored in some location, such as a session variable and you also generate an image out of the keyword to be displayed on the form.  Additionally, you'll have the text field for th user to type the word in.

 

When the user submits to the form, the next page that processes it will compare that value that the user entered with the keyword that is stored in the session variable.  If it matches, all as well and you can proceed.  If it doesn't match, go back to the form page.  That check should probably go into your insert.php page.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.