Line 1... |
Line 1... |
1 |
This is a Users Login class for PHP, designed to be a self contained
|
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
|
2 |
system to handle user login and administration. It is also designed to
|
3 |
be programmatically modifiable by the programmer, ie adding new columns
|
3 |
be programmatically modifiable by the programmer, ie adding new columns
|
4 |
is fairly simple.
|
4 |
is fairly simple.
|
5 |
|
5 |
|
6 |
Examples are in the examples directory.
|
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.
|
7 |
|
16 |
|
8 |
documentation contains users.class.txt which is the source from our
|
17 |
documentation contains users.class.txt which is the source from our
|
9 |
dokuwiki site (https://kb.unixservertech.com).
|
18 |
dokuwiki site (https://kb.unixservertech.com).
|
10 |
|
19 |
|
11 |
documentation also contains the phpdoc output documenting the classes
|
20 |
documentation also contains the phpdoc output documenting the classes
|