Ver Mensaje Individual
  #4 (permalink)  
Antiguo 31/07/2009, 11:19
pochos
 
Fecha de Ingreso: julio-2009
Mensajes: 72
Antigüedad: 14 años, 9 meses
Puntos: 16
Respuesta: Cambiar Minusculas a mayusculas

No se si va a funcionar pero trata de cambiar esta funcion de esta forma...

Código PHP:
function check_result(){
    if(!isset(
$_SESSION['captcha']) || strtoupper($_SESSION['captcha']) != strtoupper($_REQUEST['capt']) || $_SESSION['captcha']=='BADCODE')
    {        
        
$_SESSION['captcha']='BADCODE';
        return 
false;
    } 
    else 
    {
          return 
true;
    }
  }