So I have this script:
How would I make it so there could be two passwords that would work?
PHP Code:
<?
session_start();
$cmp_pass = md5("passtest");
if(!empty($_POST['pass']))
{
$_SESSION['pass'] = md5($_POST['pass']);
}
if($_SESSION['pass']!=$cmp_pass)
{
?>
Comment