How could I make a redirect ... say I have a php page called pay.php there is a checkbox, when they check it and press submit, the page refreshes and the URL is now pay.php?term_box=checked so when the server gets the response that the checkbox is checked, it releases a redirect to a page this way it decreases server load on validation anybody know how I could do this?
If (isset(whatever the submit button is called)) { echo"<META HTTP-EQUIV = 'Refresh' Content = '0; URL='where_ever you want them to go.php'>"; { else { do what ever else you want including show the initial page } Note most of this is pseudo style.
<?php if($_GET['term_box'] == 'checked') { header("Location: http://site.com"); exit(); } ?> PHP: Peace,