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.
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