0
<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

Narayan
  • 1,624
  • 18
  • 36

0 Answers0