Multiple query data into single HTML Table (PHP, MySQL)

前端 未结 3 1913
夕颜
夕颜 2021-01-23 11:18

Here is my current code. I\'m trying to display data from three separate queries into a single table with multiple columns. Is my while statement wrong here? It\'s printing 1 ta

3条回答
  •  执笔经年
    2021-01-23 11:53

    The while loop is taking an OR clause. This means if the first one returns true, it won't execute the second one.

提交回复
热议问题