PHP Assignment

  1. Build a Web based application and perform the following tasks:
    i) Create a database in SQL Server named as "users".
    ii) Create a table named as "Signup" which contain the following columns and its data type.
    Column Name Type
    first_name varchar(50)
    last_name varchar(50)
    email varchar(50)
    gender boolean
    password varchar(50)
    iii) Create a form in PHP, with following buttons:
    Register button: which will allow users to register
    Reset button: which will clear all the fields of the form.
    first_name textbox
    last_name textbox
    email textbox
    two radio buttons for selecting gender.
    password textbox
    confirm password textbox to enter the password again. if both the password does not match then alert message will be generated.