Help for this page

Select Code to Download


  1. or download this
    HTML:
    <a href="../cgi-bin/listusers.pl?alpha=ABC">ABC</a>
    <a href="../cgi-bin/listusers.pl?alpha=DEF">DEF</a>
    etc....
    
  2. or download this
    my $alpha = $query->param('alpha');
    
    $alpha =~ /(\w)(\w)(\w)/;
    $stmt = "SELECT * FROM teamnew ORDER BY lastname WHERE lastname REGEXP
    + '^$1|^$2|^$3'";
    
  3. or download this
    "SELECT * FROM teamnew ORDER BY lastname WHERE lastname REGEXP '^A|^B|
    +^C'"