I have a page with a form where I post all my checkboxes into one array in my database. The values in my database looks like this: "0,12,0,15,58,0,16". Now I'm listing these numbers and everything works fine, but I don't want the zero values to be listed on my page, how am I able to search through the array and NOT list the zero values ?
I'm exploding the array and using a for each loop to display the values at the moment.