>
how can i get a page to redirect to a thanks.php page once i submit my info
i have
$insertGoTo = "thanks.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
// Figure the redirection page out issue!!!!!
// header(sprintf($insertGoTo));i just want after the submit button is pressed to redirect to a thank u page: :) [Non-text portions of this message have been removed]
