Ok here we go:
On this script:
gbookin.php you've got a line about
:
Quote:
|
The reCAPTCHA wasn't entered correctly. Go back and try it again.
|
You'll need to replace that with some php:
Code:
<?
header("location: post.php");
?>
Make sure that there is no other output (html tags, body tags) before this header redirect, as you cannot modify the headers after other data's been sent.
if you post the code for
gbookin.php I'll take a jab at it for you.