如何从mysql表行中生成html表头

时间:2016-03-10 04:12:27

标签: php mysql rows

这不是一个表,但我从三个mysql表中查询结果:

enter image description here

但是,我希望它显示如下:

enter image description here

我想要的显示中的html表头来自 在下面的东西。请注意thing.table中的行是哪个 在上面的查询结果中找不到的内容不包括在我想要的显示的表头中(例如:碟子)。

things.table

id ##



<table border=1>
  <tr><th>id</th><th>things</th></tr>
  <tr><td>1</td><td>blankets</td></tr>
  <tr><td>2</td><td>linens</td></tr>
  <tr><td>3</td><td>pillows</td></tr>
  <tr><td>4</td><td>plates</td></tr>
  <tr><td>5</td><td>saucers</td></tr>
  <tr><td>6</td><td>wine glass</td></tr>
</table>
&#13;
&#13;
&#13;

我不知道如何处理这种复杂性。请告诉我如何在php中进行/编码。

0 个答案:

没有答案