Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dynamic content Dreamweaver 2004

Status
Not open for further replies.

golfer2716

Technical User
Feb 4, 2003
1
US
I have a birthday database on a server. I want to limit the records from the database to the webpage. The output will be based on the month entered. How can I create a dropdown menu to select the birtdaymonth to be output on the webpage?
If I want only March then March birthdays will be output to the webpage.
 
How can I create a dropdown menu to select the birtdaymonth to be output on the webpage?

Code:
<select name="month">
<option value="1">January</option>
<option value="2">February</option>

... rest of months omitted to save typing

<option value="12">December</option>
</select>


Chris.

Indifference will be the downfall of mankind, but who cares?
Woo Hoo! the cobblers kids get new shoes.
People Counting Systems

So long, and thanks for all the fish.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top