HTML表格,表格标题

时间:2014-01-23 22:21:37

标签: html html-table

我有一个大小为n的数组。数组的每个元素都是一个表头:

<th> "array[0]" </th>

<th> "array[1]" </th>

...

<th> "array[n]" </th>

如何在不编写所有内容的情况下自动创建n个表头?就像一个遍历数组的循环,并为数组的每个元素创建一个表头。

1 个答案:

答案 0 :(得分:0)

使用PHP作为您的评论指示,您可以执行以下操作:

foreach ($array as $header) {
    echo "<th>$header</th>";  
}

请参阅此网站以获取更复杂的教程:http://www.tizag.com/phpT/forloop.php

以及foreach上的更多内容:http://www.php.net/manual/en/control-structures.foreach.php