- or download this
#!/usr/local/bin/perl -w
...
print <<EOF;
</select>
EOF
- or download this
my @market712 = $market_sth->fetchrow_array;
while (my $market = $market_sth->fetchrow_array) {
print "<option value=\"$market\">$market</option>" ;
}
- or download this
# my @market712 = $market_sth->fetchrow_array;
while (my $market = $market_sth->fetchrow_array) {
print "<option value=\"$market\">$market</option>" ;
}