Possible Duplicate:
PHP page redirect
I have 0 experience with PHP. I was setting up a blog in wordpress which is in PHP.
In a page there are includes. Now I do I redirect users from page to the other.
For example: When users visit pics.php I want to redirect them to Gallery.php
You can redirect the users browser via the
header()function:You will need to ensure that no output has been sent before this line (check for
echoandprintstatements, as well as anything that may produce errors or warnings).