0

Im trying test if an username already exists. But always return "username exists":

   if (!isset($_POST['usuario'])) {
    /* Parameters not pass */
    exit("{'success': false, 'msg': 'No hay parametros.'}");
   }

   /* Search a user with username == $_POST['usuario'] */
   $usuarioCohincidente = UsuariosQuery::create()
                          ->filterByNombreusuario($_POST['usuario'])
                          ->find();

   if($usuarioCohincidente->isEmpty()){
       /* Username is available */
       exit("{'success': false, 'msg':'Usuario inexistente.'}");
   }else{
      /* Username is not available */
      exit("{'success': true, 'msg': 'Usuario existente, por favor, seleccione otro      nombre para el usuario.'}");
   }

Any idea ?.

4

1 に答える 1