Jmorley88 Posted April 5, 2013 Share Posted April 5, 2013 Hi All, Very new to PHP so I wonder if you can help. I have set up a form with Recaptcha on it. The form posts the information on the front page (which works). The only problem is that I want the code to send the user back to the home page. <?php require_once('recaptchalib.php'); $privatekey = "6LfxZN8SAAAAAIxozrSnTxTgrAljrQlM0R7k8yEQ"; $resp = recaptcha_check_answer ($privatekey, $_SERVER["REMOTE_ADDR"], $_POST["recaptcha_challenge_field"], $_POST["recaptcha_response_field"]); if (!$resp->is_valid) { // What happens when the CAPTCHA was entered incorrectly die ("The reCAPTCHA wasn't entered correctly. Go back and try it again." . "(reCAPTCHA said: " . $resp->error . ")"); } elseif { // Your code here to handle a successful verification ($_POST['submit']){ $connect = mysql_connect("localhost","hautopsy_root","Kings!123") or die ("couldnt connect"); $db = mysql_select_db("hautopsy_netconfess") or die ("database error"); $nc='nc'; $name = strip_tags($_POST['name']); $confession = ($_POST['confession']); $datetime = date ("Y:m:d:H:m:s"); $query = mysql_query("insert into nc (name, confession, datetime) values('$_POST[name]', '$_POST[confession]', '$datetime')") or die ("failed to insert"); header('Location: http://www.example.com/'); }else{ header("Location: index.php"); } } ?> I am using header("Location: index.php"); but it just seems to be staying on the same page. Thanks Quote Link to comment https://forums.phpfreaks.com/topic/276560-recaptcha-php-error/ Share on other sites More sharing options...
remenissions Posted April 5, 2013 Share Posted April 5, 2013 (edited) Perhaps theres spaced lines in your require('recaptcha'); ? I've had that happen before it is very tedious. If it is making that last insert when you run the code I'd definately check that. Remember that header() must be called before any actual output is sent, either by normal HTML tags, blank lines in a file, or from PHP. It is a very common error to read code with include, or require, functions, or another file access function, and have spaces or empty lines that are output before header() is called. Edited April 5, 2013 by remenissions Quote Link to comment https://forums.phpfreaks.com/topic/276560-recaptcha-php-error/#findComment-1423026 Share on other sites More sharing options...
Jmorley88 Posted April 5, 2013 Author Share Posted April 5, 2013 Thanks remenissions Do you mind explaining that a little more simply. As the title suggests I am still a newbie with PHP. Thanks Quote Link to comment https://forums.phpfreaks.com/topic/276560-recaptcha-php-error/#findComment-1423041 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.