Webmasterpals  

Go Back   Webmasterpals > Webmasterpals Network > PHP Login Script v2.0

Reply
 
Thread Tools Display Modes
  #1  
Old 04-11-2012, 11:29 AM
Jacques2012 Jacques2012 is offline
Junior Member
 
Join Date: Apr 2012
Posts: 2
Jacques2012 is on a distinguished road
Default reCAPTCHA: Go back hyperlink

I'd like to add a go back / return to previous page hyperlink should the reCAPTCHA validation fail due to input errors by the user. Can the form data be retained?
*Thanks for the PHP Login Script.*
Reply With Quote

DirTimes Web Directory - Premium General web directory of quality websites. Submit today!

Premium Web Directory - Premium general web directory. Submit your site for Inclusion

  #2  
Old 04-11-2012, 06:05 PM
polarexpress polarexpress is offline
Senior Member
 
Join Date: Dec 2011
Posts: 181
polarexpress is on a distinguished road
Default Re: reCAPTCHA: Go back hyperlink

You can simply redirect the error action to a new page like error.php by adding a header location marked in blue color.



Code:
require_once('recaptchalib.php');
     
      $resp = recaptcha_check_answer ($privatekey,
                                      $_SERVER["REMOTE_ADDR"],
                                      $_POST["recaptcha_challenge_field"],
                                      $_POST["recaptcha_response_field"]);

if (!$resp->is_valid) { 
header('Location: error.php'); 
exit();  
}
and then you can create a link or form to get back to the registration page.

Thanks to the developers of this script.
Reply With Quote
  #3  
Old 04-12-2012, 03:20 PM
Jacques2012 Jacques2012 is offline
Junior Member
 
Join Date: Apr 2012
Posts: 2
Jacques2012 is on a distinguished road
Default Re: reCAPTCHA: Go back hyperlink

Solved: register.php code changed as advised and error.php page created with a go back hyperlink and instructions for user. Thanks!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT. The time now is 12:23 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Webmasterpals.com (c) 2008 - All Rights Reserved