si no tienes base de datos y tampoco archivo, puedes hacerlo con un arreglo
aqui hay un ejemplo
Código PHP:
Ver original<?php
$aD["clave1"] = true;
$aD["clave2"] = true;
$aD["clave3"] = true;
if (!$aD[trim($_POST['password'])]) { ?>
<h2>Titulo</h2>
<form name="form" method="post" action="">
<input type="password" name="password"><br>
<input type="submit" value="Aceptar"></form>
<?php
}else{
?>
Contenido protegido
<?php
}
?>