+ 1
What is basic logic for login form php-mysql
I want to create login form
1 Antwort
0
Typically you have 2 main elements of a login;
Email | password
You can add these by something like this;
email:string password:string
You can even set the maximum length of each field by using
name varchar(20) password varchar(35)
But you also include username, address, phone, etc to increase more generated information from those logging in in.