Hi everyone, I have a page that does a security code check before moving on to a form. Instead of a click here to continue after a corerct code is entered ... that I have at the moment, I want the page to automatically go to another page with out having to click anything.
//check post
if($sti->checkPost() === true){
echo "<span class=\"directorytext\">Thank you, <a href=\"add1.php\" target=\"_top\">click here to continue</a></span>";
}elseif($sti->checkPost() === false){
echo "<span class=\"directorytext\">Wrong input! Try again!</span>";
}
So in this code if checkPost = true, then I want it to automatically go to another page.
I hope that makes sense
Any help would be great, Thanks
Lee