Browse Access

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
RIGOLETO
Forum Commoner
Posts: 37
Joined: Fri Nov 20, 2009 10:13 am

Browse Access

Post by RIGOLETO »

Hi there I have a question related with security, well I have written down a PHP browser where the user should sign on, this browser program is working correct, but the problem is when the user have gotten in, the next browser is the main menu, in this scenario if the user make copy of the LINK and go to another open browser a and paste that link, then the program skip the log in and go dicrt to the main menu.

I need to know hoe control the rest of browser pages and configure my aplication to point out to the log browser and not any other browser into the application

Rigo
User avatar
requinix
Spammer :|
Posts: 6617
Joined: Wed Oct 15, 2008 2:35 am
Location: WA, USA

Re: Browse Access

Post by requinix »

Use sessions to track a user on one computer. You can store the authentication credentials in there and have each page check that the user has logged in.
Post Reply