Re: Last URL - Mailing list pgsql-php

From scott.marlowe
Subject Re: Last URL
Date
Msg-id Pine.LNX.4.33.0211080923450.10463-100000@css120.ihs.com
Whole thread Raw
In response to Last URL  ("Steven Lee" <blindeagle@telocity.com>)
List pgsql-php
On Thu, 7 Nov 2002, Steven Lee wrote:

> Dear all:
>
> I try to write a logging page which can know how the users find my site.
> if by search engine or some banner switch, they must from another site
> (yahoo,xxx.com etc.)
> I try to find it in $HTTP_SERVER_VARS[], seems no, I am not sure.
> Is ther any Possible way that I can know what is the last URL before the
> user get into my site?

Others have mentioned $_server[], I'll just add that you can see all the
names of the vars you can grab by using either

phpinfo();

phpinfo gives up lots of various information.  You can use different
constants with it.  See http://www.php.net/manual/en/function.phpinfo.php
for more info.

or you can implode the array's keys to get a list like this:

print implode(":",array_keys($_server));

Just replace $_server with a different array and you can see what keys it
has.  You can use the same trick on multi-dimensional arrays like so:

print implode(":",array_keys($_server['first_key']));



pgsql-php by date:

Previous
From: Carlos García Gómez
Date:
Subject: Problem with html select lists and postgres
Next
From: Keary Suska
Date:
Subject: Re: Problem with html select lists and postgres