我需要设置较小的尺寸,因为所有图像都是不同的尺寸,需要一个小尺寸,因此页面不会伸展,但每当我添加宽度和高度尺寸时,我都会遇到php错误。
只需要img的宽度和高度。
while ($res = mysql_fetch_array($action)) {
$output = "<img src=\"../admin/inventory_images/{$res['id']}.jpg\"></img><a href=\"product.php?id={$res['id']}\">{$res['product_name']}</a><br />";
echo $output;
}
答案 0 :(得分:2)
将它们正常放入<img>
标记:
$output = "<img src=\"../admin/inventory_images/{$res['id']}.jpg\" height=\"100\" width=\"100\"><a href=\"product.php?id={$res['id']}\">{$res['product_name']}</a><br />";