<head> <title>Demo</title>
</head>
<body>
<form action="s.php" method="post" >
Email: <input type="text" name="email" />
Password: <input type="text" name="pwd" />
<input name="submit" type="submit" value="Submit" />
</form>
</body>
</html>
<?php if(isset($_POST['submit'])) { $Email=$_POST['email']; $password=$_POST['pwd']; echo $Email; echo $password; } ?>
This is the code HTML and PHP code That I am trying