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
https://forums.phpfreaks.com/topic/168453-solved-_post-problem/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.