Well, i’m doing a drop menu for my categories and I’m getting the values of the database from other file, so in the file I’m working I got an array $this with the parent_id categories… but I can’t equal the variable $this to $categori, only concatenate them… and I can only get the first item of the array then, because if the first one is 1 and the second is 2, I’m getting a ‘12’ for the second value…
This works
[php]$categori .= $this->_cate[$i][‘cate’];[/php]
This doesn’t works
[php]$categori = $this->_cate[$i][‘cate’];[/php]
I really need this to work, someone got any idea?