我開發了一個接收用戶註釋並將它們存儲在數據庫中的PHP代碼。但是當我發佈評論時,我想輸出用戶的圖片。另外,如果數據庫中沒有用戶圖像,則應顯示默認圖像。 目前我的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>
}
?>
你有什麼試過?我在這裏沒有看到任何試圖在頁面上放置圖像的東西。 – ametren
@ametren:我試圖使用'echo'命令輸出圖像,但遇到了問題。我真的不知道如何輸出來自數據庫的圖像。 – user188995
您不應該將圖像存儲在數據庫中。最多可以將圖像的位置存儲在服務器的文件系統中。 –