You can intergrate the validation page w/ the site in which they input their information.
<?php
if(!isset($_POST['validate']){ //checks to see if they have tryed to validate their info
?>
//form goes here with action = "<?php $_SERVER['PHP_SELF'] ?>"
//fill out info
//click validate button returning a value in $_POST['validate'] button HTML below
<input type="submit" name="validate" value="Validate">
//website will reload w/ all values that were posted in the form, but the form will not be shown because of the if(!isset($_POST['validate'])) statement.
<?php
}else{
//all validation code should go here
//another form could be displayed to give another submit button after all information checks out
?>
<input type="submit" name="submit" value="Submit">
//This form should have the action below so it will post all information in the $_POST[] on the 2nd page
<form action="_gdForm/webformmailer.asp" method="post">
<?php } ?>
I hope this helps. Also there may be an easier way to do this.