我在may数据库上有一个select查询
while($row=mysql_fetch_assoc(mysql_query("select * from items"))){
//here
}
我希望它显示网格样式,并使用
while($row=mysql_fetch_assoc(mysql_query("select * from "))){
?>
<tr>
<td><img src="<?php echo $row['path']?>"></td>
</tr>
<tr>
<td><?php echo $row['name'] ?></td>
</tr>
<?php
}
但它会显示一个垂直样式,我将使用什么html标签,我也使用<span>
但我无法正确显示
答案 0 :(得分:1)
在这种情况下,在函数中包装行的输出要好得多。 Smth喜欢以下内容:
function showRow($row) {
?>
<tr>
<td><img src="<?php echo $row['path']?>"></td>
<td><?php echo $row['name'] ?></td>
</tr>
<?
}
然后:
<table>
<?
while($row=mysql_fetch_assoc(mysql_query("select * from "))){
showRow($row);
}
?>
</table>