This tutorial sows you how a
This tutorial covers the
Get started using UMA. UMA is
This is a built in admin
simple php login system is
concepts of creating a
a user management and
system that allows users to
created.
membership system from A to
authentication system
login and logout.
Z on your website. It
written in PHP. UMA can
includes signup, activation,
greatly reduce the time and
login and lost password
effort put into every
recovery as well as Session
project.
Management. It is very in
depth and extensive.
Date: Dec, 09 2003 Date: Nov, 25 2002 Date: Sep, 23 2002 Date: Aug, 26 2002 |
This tutorial will teach you
HTTP as a protocol is
This tutorial teaches you to
One cool thing about php is
how to create your own login
stateless, which doesn't
initiate user authentication
that you can fairly easily
system with PHP, using
make it easy for a
using PHP, and then to
validate users before
sessions and the PEAR::DB
developer. For example, your
authenticate users by
displaying content on a page
classes. Want to password
web server sends out a page
matching the value of the
by page basis. Let's say you
protect your pages and only
to someone ordering from an
global variables
don't want to restrict the
allow members to see them?
online shop, and then
$PHP_AUTH_USER, and
entire directory using
Then read this.
forgets all about it. A few
$PHP_AUTH_PW to a list of
htaccess, this is a neat
seconds later, the same
valid usernames and
alternative. This tutorial
person sends another
passwords. The sample code
shows how to create a simple
request, ordering another
included with this tutorial
page-based login system
item. As far as the web
will show you how to use
using PHP and mySQL.
server is concerned, it
either hard-coded values, a
could be an entirely
flat file, an existing
different person. So to make
.htpasswd file or a database
sure the right orders are
table to manage your valid
associated with the right
usernames and passwords.
person, a developer has to
This tutorial is intended
employ some sneaky tricks.
for the PHP programmer who
Before PHP4, you could have
is generally familiar with
used something like PHPLIB
authentication, but who
for session management. But
would be interested in
PHP4 comes with a complete
learning a practical method
set of sessioning functions.
for authenticating access to
This article explains how to
one or more Web site pages.
use them.
Date: Jul, 08 2002 Date: May, 08 2002 Date: Aug, 15 2000 Date: Jul, 29 2000 |