Re: [PHP] getting current page url [RESOLVED]

2006-04-28 Thread Schalk
Jochem Maas wrote: do a search $_SERVER['PHP_SELF'] - it should answer all your question. if in doubt a var_dump() can do wonders (in this finding out what kind of info is generally available, e.g.: ?php echo 'pre'; var_dump($_SERVER, $_REQUEST, $_ENV, $_POST, $_GET); Thanks Jochem, A

Re: [PHP] getting current page url [RESOLVED]

2006-04-28 Thread Jochem Maas
Schalk wrote: Jochem Maas wrote: do a search $_SERVER['PHP_SELF'] - it should answer all your question. if in doubt a var_dump() can do wonders (in this finding out what kind of info is generally available, e.g.: ?php echo 'pre'; var_dump($_SERVER, $_REQUEST, $_ENV, $_POST, $_GET);