Help for this page

Select Code to Download


  1. or download this
    $rs1->execute;
    if (@{$rs1->fetchrow_array}) {
    ...
    } else {
       report_error("username does not exist");
    }
    
  2. or download this
    $rs1->execute;
    report_error( (@{$rs1->fetchrow_array) ? "username_exists" : "username
    + does not exist" );