well im not sure if i am doing this right and i have seemed to forget how to do the header function where it will goto another page but just to make sure this is what i have
Header("http://bla.com");
thats what i got but if thats wrong tell me how the hell to do it lol. :hehe:
The views expressed on this page by users and staff are their own, not those of NamePros.
In addition to the above, make sure that the header function gets called before any output is sent to the browser.... unless you are using output buffering (via the function ob_start().. in which case at the very end of the script or at some point you'll have to flush out the buffer using the function ob_flush() at which point the buffered output actually gets displayed in the browser).
also, the location header isnt the only one that you can use..... other types that are commonly used are ...
Last-Modified:
PHP:
header("Last-Modified: " . gmdate("D, d M Y H:i:s"))
this will indicate the last time the document was changed on the server.
You can also use the cache control header.. to tell the browser how to cache a page, like this: