使用php将td添加到表中的特定列

时间:2014-11-24 10:06:02

标签: php html mysql

我还不熟悉php,我正在尝试使用php创建调度程序脚本并尝试将标记添加到特定列

我的代码:

<table>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<tr>
<td>3</td> /* I'm trying to get this td in column 3 */ 
<td>1</td> /* I'm trying to get this td in column 1 */
<td>2</td> /* I'm trying to get this td in column 2 */
</tr>
</table

任何帮助将不胜感激

修改

为了清楚起见我简化了我的代码。

1 个答案:

答案 0 :(得分:0)

我无法理解你的问题清楚你想生成动态代码以通过php添加td如果是,下面的代码可能对你有用

<?php foreach($td_array as $key=>$val){
echo "<tr>";
echo "<td>".$key."</td><td>".$val."</td>";
echo "</tr>";