Handling different headers with a form

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hansman
    New Member
    • Sep 2006
    • 1

    #1

    Handling different headers with a form

    i would like to make a search page in which i can search google, and yahoo. The user may specify what site they with to use by a drop down menu, how can i code the page so that the options in teh drop down menu will use the right header..?

    and can i put more then one header on a page..


    thanks in advance
  • dlite922
    Recognized Expert Top Contributor
    • Dec 2007
    • 1586

    #2
    Originally posted by hansman
    i would like to make a search page in which i can search google, and yahoo. The user may specify what site they with to use by a drop down menu, how can i code the page so that the options in teh drop down menu will use the right header..?

    and can i put more then one header on a page..


    thanks in advance
    Code:
      
     
    <select name="searchEngine">
    <option value="headerForGoogleHere">Google</option>
    <option value="headerForYahoo">Yahoo</option>
    </select>

    Comment

    Working...