+ 2
Hello . In code login form. If I want to check if you see this user and pass, what should I write? Connect to the server
7 Answers
+ 3
When form is submitted correctly
It must be redirected to your php page using form's "action" attribute and in post method
Then on php side you have to write following thing to get username and password
$username = $_POST['name of your username input'];
echo $username;
$password= $_POST['name of your password input'];
echo $password;
+ 2
PHP in the server, and Password validation with Javascript on client.
+ 1
Which language you are using?
+ 1
Shakir Dodhiya javascript
+ 1
Shakir Dodhiya thanks
0
Ok.
Then, When form is submitted what function you are performing?
0
Welcome Mitra