- 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....
- 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'";
- or download this
"SELECT * FROM teamnew ORDER BY lastname WHERE lastname REGEXP '^A|^B|
+^C'"