Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/01/2009, 19:44
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: Simple sistem autentificacion ( texto plano)

Mmmm no te basta un simple "if"?:
Código php:
Ver original
  1. <?php
  2. if($_POST['pass'] != "tupass" ) {
  3.        die("No puedes entrar aqui");
  4. }

Saludos.