How to make a search box with 2 options

Discussion in 'HTML & Website Design' started by frixiones, May 30, 2008.

  1. #1
    Hi, I would like to know if there is some script or some way of making a search with 2 different options for searching like in this website:

    http://www.911tabs.com/

    I am working with Drupal and I have looked in the search modules but I don't think that there is something like this. I don't know if I should use a certain script or something in php, in which I am not very familiar with.

    Thanks, in advance, for any info that you may give me to help.
     
    frixiones, May 30, 2008 IP
  2. whirlybird20

    whirlybird20 Guest

    Messages:
    462
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #2
    You should be able to do this with a simple php if statment

    Like this

    $search = $_POST['search'];
    $type = $_POST['type'];

    if ( $type=="band" )
    {
    //your band code here.;
    }
    elseif ( $type=="song" )
    {
    //put your song serach code here.;
    }
    else
    {
    print "error";
    }

    -----------------------
    http://1stclasswebsites.com
     
    whirlybird20, May 30, 2008 IP