Re: [PHP-DB] Make history HOW?

2001-04-19 Thread Russ Michell
I have a similar PHP system on my site using sessions: I have an admin session, where each step(1-5) is a different page(script) and as each page is progressed into a new session is registered with the users username, the activity currently being edited and the team within this activity they a

Re: [PHP-DB] Make history HOW?

2001-04-18 Thread Timothy Aslat
Aleksey Yarilovets wrote: > PS: www.geocities.com does but how? That is the question Try using the $HTTP_REFERER variable. It returns the previous URL provided you actually clicked a link to get to the current page. It's an environment variable, but easily handled in PHP Cheers Tim -- | Dis

[PHP-DB] Make history HOW?

2001-04-18 Thread Aleksey Yarilovets
Hi everyone ! The question is: how to build a script that displays history of user clicks like: Home > Setting > User Properties BUT you can go into UserProperties from other locations so somewhere it will be OK to get Search > User Results > User Properties Does enybody done it?