Skip to content

Instantly share code, notes, and snippets.

@shohan4556
Created September 4, 2014 12:49
Show Gist options
  • Save shohan4556/3f73fddaf1cbc8320ec8 to your computer and use it in GitHub Desktop.
Save shohan4556/3f73fddaf1cbc8320ec8 to your computer and use it in GitHub Desktop.
#Run all the code in your mysql Database
CREATE DATABASE SIGN_UP;
create table sign_up(first_name varchar(15) NOT NULL,last_name varchar(15) NOT NULL,email varchar(40) NOT NULL,
password varchar(12) NOT NULL,PRIMARY KEY(email))
sql="INSERT INTO sign_up (first_name,last_name,email,password) VALUES ('$fname','$lname','$email','$pass')"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment