我开发了一个 PHP 代码,它接受用户的评论并将它们存储在数据库中。但是当他发表评论时,我也想输出用户的图像。此外,如果数据库中没有用户的图像,则应显示默认图像。目前我的 PHP 代码如下所示:
<?php
if($pid && $sess_uid && $comment_text){
$sql = "INSERT INTO ttl_comments (comment_pid, comment_text, comment_uid) VALUES ('".$pid."', '".$comment_text."', '".$sess_uid."')";
$result = mysql_query($sql);
$comment_id = mysql_insert_id();
if($comment_id > 0)
echo '<div class="usercomment">
<div class="clr"></div>
<a href="profile.php?uid='.$sess_uid.'"></a>
<a href="profile.php?uid='.$sess_uid.'">
<span class="commentsuser">'.$sess_fname." ".$sess_lname.'</span>
</a>
<span class="comments">'.$comment_text.'</span>
</div>
}
?>