are there any functions in php that one can use to redirect browsing to another page?
Use
header("location:page to goto");
bear in mind though that this will only work if there has been no output to the browser
so
echo "hi"; header("location:wherever.php");
will fail
HTH
GM
=) it worked! thanks for the help. hmm i should have looked more carefully in the reference manual =P