我想将 mysql 获取结果显示为 2 个列。我在数据库中有记录Name
,Description
和Price
. 它返回为
Name
Des
Price
Name
Des
Price
但我想要的布局是这样的:
Name Name
Des Des
Price Price
Name Name
Des Des
Price Price
我的代码如下:
<?php
while($row=mysql_fetch_array($result))
{
?>
<tr>
<td><img src="<?php echo $row['picture']?>" /><br />
<b><?php echo $row['name']?></b><br />
<?php echo $row['description']?><br/>
Price:<big style="color:green">
Rs.<?php echo$row['price']?></big><br /><br />
<input type="button" value="Add />
</td>
</tr>
<tr><td colspan="2"><hr size="1" /></td>
<?php } ?>