Click to See Complete Forum and Search --> : [RESOLVED] $_server['http_host'];


otuatail
07-13-2007, 07:41 AM
This retreaves the URL of the website. Is there one to retreave the actual page. I need a way of getting back after I have filed out a general contact us form.

TIA

Desmond.

MrCoder
07-13-2007, 08:45 AM
<?php
var_dump($_SERVER);
?>


Use the following code to get a list of all values currently stored in $_SERVER.

otuatail
07-13-2007, 09:17 AM
Thanks Sorted.