How can I tell PHP to forward to another page? Thanks
header('Location: http://www.yoursite.com');
remember to use the header before you print any html
header('Location: '. $yourPage); exit();
but if u use the header funtion u are not allowed to make ANY OUTPUT before this script
so e.g.
echo "test"; header('Location: '. $yourPage); exit();
wont work
you can also make javascript that allws you output something before redirection
function foo() { window.location.href='redirection.php'; }
set.Timeout("foo();",6000);
sorry..
window.parent.location.href
cant you do stuff like this too
window.new.location.href='http://address.com';