我从 SQL 数据库中检索商店图像和内容的部分代码(仅路径保存在数据库中)如下。我得到显示的内容,除了图像。
我的数据库记录显示路径为;C:/xampp/htdocs/bro/productLoader/uploaded_files/1377935517-IMG_0150.JPG
我输入的图像源似乎对我没有帮助。如何调整我的方法以确保从数据库中提取图片?
代码如下;
<?php
$j=0;
while ($rows = mysql_fetch_assoc($query))
{
?>
<tr style="height:100px; font-family: Georgia, 'Times New Roman', Times, serif;">
<td style=" width:100px;">
<img src='<?php $rows['pictures'];?>'><br><br>
</td>
<td style="text-align:justify;"><?php echo $rows['description'];?><br><br></td>
<td style="text-align:right;"><?php echo $rows['brand'];?><br><br></td>
<td style="text-align:right;"><?php echo $rows['model'];?><br><br></td>
<td style="text-align:right;"><?php echo $rows['unitprice'];?><br><br></td>
<td style="text-align:right;"><?php echo $rows['availability'];?> units available<br><br></td>
<td><input type='submit' id='buynow[]' class='buynow' name='but' value='Buy'><br><br></td>
</tr>
<?php
$j++;
}
echo "</table>";
}?>