Jump to content

[SOLVED] $_POST problem


Zepo.

Recommended Posts

I am trying to integrate recaptcha with my current script. For some reason it's not passing the $_POST varables and I can't seem to figure out why. The source of the page shows the form in it but it doesn't pass the captcha to the next page while it does for the rest of the form variables.

 

//Actions....
switch($page)
{
case "register":
	define( 'TEMP_FILE', 'message' );
		$newUser = new NewUser();
		$newUser -> Add($_POST['username'], $_POST['password'], $_POST['confirmpass'], $_POST['email'], $_POST['recaptcha_challenge_field'], $_POST['recaptcha_response_field']);
	break;
default:
	define( 'TEMP_FILE', 'register' );
		require_once('./includes/classes/class.recaptcha.php');
		$publickey = "6LfKnAcAAAAAAFo5WCEr1z5WTW9WdYOBNTEp6ozg ";
		$newcapt=recaptcha_get_html($publickey);
		$tpl->assign("captcha","$newcapt");
	break;
}

Switch case

http://completeladders.com/development/v1/user.php = Page; as you can see the form looks right, but for some reason it doesn't pass.

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.