/* this is the SQL to creat the Temporary Customers table in the database */

create table temp_customers
(customerid int unsigned not null auto_increment primary key,
firstname char(50) not null,
lastname char(50) not null,
email char(150) not null,
password char(40) not null
);

