secure system.
I log users, and them create a cookie with their user ID.
But, anyone can create a .php that creates a user id, link it to my user detail page, and acess personal info about "any" id they check.
The system is open source, so people can know all the variables used, etc.
So, how can I create some secure login system? I was thinking about checking for the HTTP REFERER, and only OKay a user to acess the detail page if the HTTP REFERER is in the local host, but the REFERER can be changed without much trouble.
Ideas folks?