I am currently redirecting users using the following: <? header( 'refresh: 0; url=http://website.com' ); ?> Code (markup): I want to be able to pass a variable aswell, how do I go about doing that using this method. (For example: http://website.com?id=$id)
yeah just add the variables to the end of the url just like in your example. It should work with no problem. Just remember to set in the page that you are pointing to a get method to collect the variable.