Show the three select boxes in the html page and give an option Please Select the value of 0 or none.
On the PHP page create a statement like this:
$where = "WHERE 1=1 ";
if (selectone !== "none") {
$where .= "AND option1 = $selectone";
}
// the same for the other two.
$qry = "SELECT whatever FROM whatever $where";
get the idea ??