[PHP] Login and sessions?

2003-01-23 Thread Pag
Hi, I am trying to add a login functionality to my new manager. A simple username/password functionality, so that the user logs in and everything he does inside the site will have his name. I mean, if he wants to create a new entry on the database, the field name wont have to be filled,

Re: [PHP] Login and sessions?

2003-01-23 Thread Justin French
Start here http://www.WebmasterBase.com/article/319 Sure, it isn't perfect, and doesn't do everything you want it to do (and it currently relies in register_globals ON), but I found it educating, and formed the basis of my own user/admin/clearance/membership/session management system which I use

Re: [PHP] Login and sessions?

2003-01-23 Thread Chris Shiflett
--- Pag [EMAIL PROTECTED] wrote: What do i use to authenticate the user on my site? Sessions? No, authentication is something you do. PHP's sessions help you keep up with persistent data associated with a user. There are some things in PEAR (http://pear.php.net/) that handle authentication for