I’m building a simple item list where visitor can filter the choice of items displayed by color and size. To do this, I'm using PHP and trying to store multiple values as session variables so that when a link for choice of color or size is clicked on, the page is refreshed and the item stored as an additional filter. Unfortunately I’m not getting it to work as the new choice of filter always replaces the old one.
I think other people have achieved something similar with Javascript but I was just wondering if what I've done has any relevance at all as I've spent quite a lot of time writing it.
This is what I have:
<?php
$ranges=”clothes”, “accessories”;
$range=”clothes”;
$color=”red”;
//the below session variable comes from the link for filter that has been clicked on (see further down)
if (isset($_GET['filt'])) {
$filt = array();
$newfilt = filter_input(INPUT_GET, 'filt', FILTER_SANITIZE_STRING);
array_push($filt, $newfilt );
print_r($filt); //debug
//This is how products get filtered:
foreach ($products as $product) {
if (empty($filt) or $filt == "all") {
$filteredProducts[] = $product;
} else {
foreach ($filt as $sgl_filt) {
if ($sgl_filt == $range || ($sgl_filt == $color ) {
$filteredProducts[] = $product;
}
}
}
//This is an example of a filtering button user clicks on to set a filter:
print "<li><a ref='""my/site/".$range."/".$color."'>".$color."</a></li>
?>
Thanks for any help and tips!