PHP - Filtering by MySQL field value

前端 未结 2 1544
Happy的楠姐
Happy的楠姐 2021-01-24 10:13

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

2条回答
  •  余生分开走
    2021-01-24 10:59

    MySql query solution:
    Use a Where Statement in your query, and keep your PHP the same.
    e.g.

    Select * From table Where `category`="Filter Value";
    

    Let me know if that works for you, or if you're constrained to only using PHP to filter the category..

提交回复
热议问题