Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Selecting a value on a pull-down menu

by jptxs (Curate)
on Oct 03, 2000 at 00:59 UTC ( [id://34981]=note: print w/replies, xml ) Need Help??


in reply to Selecting a value on a pull-down menu

This is the way I do this in a program I have. It handles the case that the first, i.e. blank value is selected when nothing is set beforehand...

### Execute the region query $sth->execute() or dienice("585 Couldn't execute statement: " . $sth->errstr); print qq!<TR><TD ALIGN="RIGHT">SC region:<SELECT NAME="reg_name">! +; print qq!<OPTION VALUE=""!; print qq! SELECTED! unless ($REG_NAME); print qq!>ALL REGIONS</OPTION>!; while (my @regions = $sth->fetchrow_array()) { print qq!<OPTION VALUE="$regions[0]"!; print qq! SELECTED! if ($regions[0] eq $REG_NAME); print qq!>$regions[0]</OPTION>\n!; } print qq!</SELECT></TD></TR>!;

-- I'm a solipsist, and so is everyone else. (think about it)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (2)
As of 2024-04-20 03:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found