Yes this question has been asked before but we are including one step that we have not seen in any other answers. This question involves three pages one HTML and two PHP pages. The HTML page has a reCaptcha that is verified when the user clicks the SEND button that navigates to the verify.php page. It has your standard true or false if statements code below
if ($captcha_success->success==false) {
echo "<p>You are a bot! Go away!</p>";
} else if ($captcha_success->success==true) {
header('location:https://androidstackoverflow.com/contactform/send-
info.php');/* page on the server */
echo "<p>You are not not a bot!</p>";*/
}
This is where the fail or lack of results starts. if true we want to navigate to send-info.php and send the info to the server. We can not see the code in send-info.php load or execute. We know the code works by adding it inside the true if statement So the question is this a fail because the send-info.php is not loading or no variable info is being received from the HTML page with the data? Web Page can be seen here Web Page We are not web developers and this is the only PHP code we have ever written. It has taken 5 days to get this far with the contact form so we are desperate ! For clarity contactform is a folder and all three forms are in this folder we have tried with out contactform in the path
You are a bot! Go away!
"; } else if ($captcha_success->success==true) { header('location:https://androidstackoverflow.com/contactform/send-info.php');/* page on the server */ echo "You are not not a bot!
"; }` – TheWelshManc Mar 20 '18 at 02:07