Create Subscribers Table
Connect to the Linux server: telnet smilinux.cfbisd.edu (login with your username).
Login to mysql: mysql -u username -p
Create table:
create table subscribers (
id int not null primary key auto_increment,
email varchar (150) unique not null);