Create Subscribers Table

 

  1. Connect to the Linux server: telnet smilinux.cfbisd.edu (login with your username).

 

  1. 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);