Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

closed as not a real question by rdlowrey, tereško, Mr. Alien, oezi, Graviton Nov 14 '12 at 13:40

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Your line $filt = array(); clears the array every time your $_GET['filt'] is not empty, if this is really the code that is in your page.

Try rather if( !isset($filt) ) $filt = array();

Obviously, since php session variables are of the form $_SESSION['filt'] I expect you did something like :

<?php
session_start();
//some stuff

$filt = $_SESSION['filt'];

// code we are talking about

$_SESSION['filt'] = $filt;

// more stuff
?>

If not, you might as well replace all your $filt's by $_SESSION['filt']

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.