Hi Rajeesh,
What you are attempting to do is kind of like producing a dynamic SQL statement. Actually it's not as hard as it seems and you are on the right path.
Basically you should start with the main part of the query before the WHERE. Then gradually check what the values are and add them to the WHERE unless they == 'any' then you can just skip it. Here's my example:
<?php
$query = "SELECT * FROM table ";
$where = "";
if($type != 'any'){
$where .= "type='{$type}'";
}
if($location != 'any'){
$where .= " AND location='{$location}'";
}
if($gender != 'any'){
$where .= " AND gender='{$gender}'";
}
if($married != 'any'){
$where .= " AND married='{$married}'";
}
if($photo != 'any'){
$where .= " AND photo='{$photo}'";
}
// now we put it all together
if($where != ''){
$query .= " WHERE {$where}";
}
$qid = mysql_query($query);
?>
My code above assumes that you have already ran your variables (user inputs) through a mysql_real_escape_string() function call).