$select_services="select distinct`location` from `projects`";
$fetch_services=mysqli_query($db_conn,$select_services);
while($result_services=mysqli_fetch_array($fetch_services)){
$service_id=$result_services['location'];
//
$select_services12="select * from `gallery` where `id`='$service_id'";
$fetch_services12=mysqli_query($db_conn,$select_services12);
$result_services12=mysqli_fetch_array($fetch_services12);
$servie_title=$result_services12['title'];
?>
$select_projects="select * from `projects` where `location`='$service_id' order by `id` desc";
$fetch_projects=mysqli_query($db_conn,$select_projects);
while($result_projects=mysqli_fetch_array($fetch_projects)){?>
}?>