How to use HTML form with post method and receive the form data in PHP

1 Answer

0 votes
// login.php
$name = $_POST["name"];
$password = $_POST["password"];

echo $name . "<br />";
echo $password;
<!-- index.php -->
<form action="login.php" method="post">   
    Name: <input type="text" name="name"/>
    Password: <input type="password" name="password"/>
    <input type="submit" value="login"/> 
</form>

 



answered Oct 11, 2019 by avibootz

Related questions

...