我有一个需要向用户展示他们自己的个人资料图片的网站。但我无法这样做。我已经构建了代码,但它不起作用。谁能建议我可能是什么原因。显示图像的代码如下:
<p>
<?php
//We check if the users ID is defined
if(isset($_GET['id']))
{
$id = intval($_GET['id']);
$dn = mysql_query('select avatar from users where id="'.$id.'"');
echo '<img src="'.htmlentities($dnn['avatar']).'" alt="Profile Picture" style="max-width:100px;max-height:100px;" />';
}
else
{
echo 'This user don't have an avatar.';
}
?></p>