Code: Select all
PHP:
<?php
$enteredPass = $_POSTї'password'];
// Check to see if input was entered in the password field here
$correctPass = md5('CORRECTPASSHERE');
if (md5($enteredPass) == $correctPass)
{
echo 'Authenticated.';
}
else
{
echo 'Not Authenticated.';
} ?>Abdul Mannan