Subversion Repositories php_users

Rev

Rev 9 | Rev 20 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
8 rodolico 1
This is a Users Login class for PHP, designed to be a self contained
2
system to handle user login and administration. It is also designed to
3
be programmatically modifiable by the programmer, ie adding new columns
4
is fairly simple.
5
 
9 rodolico 6
Examples are in the examples directory. 
7
   UsersTest.php is a basic setup which automatically detects if the 
8
   table exists and, if not, creates it
9
 
10
   UsersTestExtended.php is an example of adding a new column to our
11
   table, giving the user some limitations on what they can access in
12
   our app.
13
 
14
   UsersInitDB.php creates and initializes the table structure for 
15
   UsersTestExtended.php as an example of using it in an installer.
8 rodolico 16
 
17
documentation contains users.class.txt which is the source from our 
10 rodolico 18
dokuwiki site
8 rodolico 19
 
10 rodolico 20
http://kb.unixservertech.com/software/dailydata/libraries/php_user
21
 
8 rodolico 22
documentation also contains the phpdoc output documenting the classes
23
involved in HTML format (load the index.html file in your browser).
24