Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Mysterious Code "DBI" - Why is this working?

by cees (Curate)
on Jun 09, 2005 at 05:07 UTC ( [id://464960]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $opts = $dbh->selectcol_arrayref(<<"");
      SELECT DISTINCT market
    ...
    print qq{<select name="market" size="1">};
    print map { qq{<option value="$_">$_</option>\n} } @$opts;
    print qq{</select>};
    
  2. or download this
    print $q->popup_menu(-name => 'market',
                         -size => 1,
                       -values => $opts);
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://464960]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (4)
As of 2024-03-29 05:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found