gpt4 book ai didi

php - 使用 PHP MySQL 打印包含图像的水平表格

转载 作者:行者123 更新时间:2023-11-30 22:46:04 25 4
gpt4 key购买 nike

我试图在我的网站主页上打印一个水平表格,其中包括一张汽车图片,然后在汽车的品牌、型号和价格下方。

以下是我所做的大致情况:

<?php 
$List = "";
$sql = mysql_query("SELECT * FROM Car ORDER BY listed DESC LIMIT 5");

$Count = mysql_num_rows($sql);
if ($Count > 0) {
while($row = mysql_fetch_array($sql)){
$id = $row["id"];
$make = $row["make"];
$model = $row["model"];
$price = $row["price"];

$List .= '<table width="100%" border="0" cellspacing="0" cellpadding="6">
<tr>
<td width="20%" valign="top"><a href="/motors/cars.php?id=' . $id . '"><img style="border:#666 1px solid;"
src="/../../motors-' . $id . '.jpg" alt="' . $status . ' ' . $title . '" width="100" height="80" border="1" /></a></td>
</tr>

<tr>
<td width="80%" valign="top" align="left"><font face="Arial" color="#000080"><B>
' . $make . ' ' . $model . '</B></font><br />' . $price . '

<a href="/motors/cars.php?id=' . $id . '">view car details</a></align></td>
</tr>
</table>';
}
} else {
$List = "No cars at present";
}
mysql_close();
?>

任何人都可以帮助我对这段代码进行排序以便水平打印出来吗? 非常感谢!

最佳答案

图片的src很可能是错误的,/../../motors...还是/motors...

您可以将图像移动到您的 webapps /motors/images 文件夹并将 src 设置为 /motors/images/motors...

您创建的表必须嵌套在另一个表中。

<table>
<tr>
<td>
<table of a car>
</td>
<td>
<table of a car>
</td>
<td>
<table of a car>
</td>
.... etc.
</tr>
</table>

每隔几辆车发出一个 tr 以换行到一条新线路是有意义的。

汽车表是您在 $List 中收集的 html。

关于php - 使用 PHP MySQL 打印包含图像的水平表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29575663/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com