Quote Originally Posted by swguy View Post
There's a bug in your syntax. Instead of

Code:
        switch($category) {
           case 14:
15:
16:
17:
etc.
you want

Code:
        switch($category) {
           case 14:
case 15:
case 16:
case 17:
etc.

OH, ok thanks!!!