'; //active panel
}
else{
echo '
';
}
echo '
';
$empty = true; //flags if no items are found for the panel
foreach($data as $tile){ //shift through all the items
if($tile["id"] == $id) {continue;} //skip current item
elseif(in_array($tag, $tile["tags"])){ //if item shares tag
echo '
';
$empty = false; //mark panel as not empty
}
}
if($empty){
echo '
';
}
echo'
'; //close panel
$count++;
}
?>