Help for this page

Select Code to Download


  1. or download this
    $sth = $dbh->prepare("SELECT username,password,group 
    FROM users 
    ...
    while( my ($user,$pass,$group) = $sth->fetchrow_array ) {
      print "$user,$pass,$group\n";
    }