Create Authorized User Table
Telnet to smilinux1.cfbisd.edu
mysql -p (connect to mysql)
use database (your database, first intital last name)
create table auth_users (
id int not null primary key auto_increment,
f_name varchar(50),
l_name varchar(50),
email varchar(155),
username varchar(25),
password varchar (75));
5. Insert your user name into the auth_users table using the syntax below:
insert into auth_users values (' ', 'Firstname', 'lastname', 'email@smilinux', 'username', password ('password'));
6. Create an administrator's link on your home page to loginform.php
(view source). You will also need login.php. Make sure that these are in your public_html folder.