SignUp form code in PHP
Here we are going to learn how to design and code for signup . We are going to code in a simple way to get achieve our final result. In signup form we are going to learn and implement how to use "INSERT " query in mysql database. This query is used to insert data in database.
Syntax for INSERT query in database is as follows:
" INSERT INTO table_name (column_name1, column_name2........) VALUES(value1,value2,.......) "
In below mentioned code table_name is "login" . It contain column with name as show in our html form. They are UserId, Password, Name, Address, MobileNo. We have 5 field in our mysql database.
Comments
Post a Comment