Seach

password control in php

<html>
<body>
<form name="form1" method="post">
<label>Enter Your Password&nbsp;</label><input type="password" name="text">
<input type="submit" name="button" value="Login">
</form>
</body>
</html>
<?php
if(isset($_REQUEST['button']))
{
    echo $_REQUEST['text'];
   
}
?>