I've got a table with some rows that contain 3 fields (category, title, image). At first I created a foreach loop that returned some html with the information from each of the rows. However, now I actually want to create a scenario where I can "filter" my loop by category.
What I mean to say is that I want to create a function that will only generate the html for rows that have a particular value for their category field. I want to be able to apply this function to all the different values for category.
Any help would be appreciated.
whereclause,WHERE category <> NULLWHEREstatement is one of the basic functions of MySQL that lets you filter your queries. Can you put up the code where you are querying mysql? Then I can show you how to modify it to match the query below..