使用<img/>标记和PHP更改个人资料图片

时间:2017-12-06 04:51:45

标签: php image profile-picture

我还是关于php的新手。我目前正在建立一个用户可以上传图片以更改其个人资料图片的网站。

我们将图像文件插入表user,数据库和目录中的行图像位置&#34;上传&#34;。格式与abc.jpeg

类似

<img>标记的代码,即我显示个人资料图片的位置。但图像没有出现。仅显示缩略图图像,而不是确切的图像。

<img src=<?php 
    $current = $fgmembersite->UserEmail();
    if ($handle = opendir('upload/')) {
        $sql = "SELECT image_location FROM user WHERE email='$current'";
        //$file = mysql_real_escape_string($sql);
        if ((file_exists('upload/'.$sql) == $sql)) {
            echo 'upload/'.$sql.'.png';
        } else if (file_exists('upload/'.$sql)) {
            echo 'upload/'.$sql.'.jpg';
        }
    }
    closedir($handle);
?> alt="">

如果您不介意,可以查看我的代码,看看我哪里出错了吗?谢谢你的帮助。

0 个答案:

没有答案