我将*.html
文件更改为*.php
。它似乎没问题,但在我点击图像按钮后它没有显示图片。在*.html
文件中它正在运行。
<img src="C:\xampp\htdocs\Bella Cristina/diamond.jpg" alt="Diamond Room" style="width:200px;height:200px;">
答案 0 :(得分:0)
首先,您必须确保图像文件夹中存在图像。将文件夹和图像的名称插入数据库中表格的字段中。
要显示它,请编写PHP代码行:
// this will display the image with the size reduced or increased by 180px by 180px
echo '<img src="'.$row['field'].'" '.'width="180px"'.' '.'height="180px"'.'>';
?>
注意:$ connection连接在连接数据库
的连接字符串中