Help for this page

Select Code to Download


  1. or download this
    if ($form{searchtype} eq "keyword") {  #check that what was filled in 
    +the form was right
        if ($class =~ /keyword/) { #Check the class is type keyword
    ...
            }
        }
    }
    
  2. or download this
    if (($form{'searchtype'} eq "keyword") && ($class =~ /keyword/)
        && ($desc =~ /$form{'searchstring'}/i) && ($desc =~ /$form{'search
    +price'}/)) { 
        print "$desc\n";
    }