我想显示我所做的数据库中的评论,但是如果用户上传了评论,我也想添加评论的图像,目前我将图像存储在一个文件夹中,如果图像路径位于评论旁边的数据库中用户添加了带有评论的图像,但是它没有显示图像,并且它还在没有图像的评论中创建图像空间,代码如下
<?php
include('../c_database.php');
$queryAll = "SELECT ID, Username, Comments, time_added FROM comments ORDER BY ID DESC";
$executeQuery = mysqli_query($dbc, $queryAll);
while($row = mysqli_fetch_array($executeQuery)){
echo '<div class="commentbox">';
echo '<div class="comments">';
echo '<fieldset class="comment">';
echo '<legend>';
echo $row['Username'];
echo '</legend>';
echo '<br>';
echo '<br>';
echo '<img src="'.$row['imagepath'].'" width="100px" height="100px"></img>';
echo ' ';
echo $row['Comments'];
echo '<br>';
echo '<br>';
echo '<div class="commentdetails">';
echo '<fieldset>';
echo $row['time_added'];
echo ' / ';
echo 'Comment ID: ';
echo $row['ID'];
echo '</div>';
echo '</fieldset>';
echo '</div>';
echo '<br>';
echo '</div>';
}
?>
那么如何仅在用户上传的评论中显示图像?