doufu9521 2017-08-07 16:55
浏览 11
已采纳

如何从数据库中显示登录用户的图像?

Say if a user uploaded multiple images to their profile page, how would I display that specific user's images? I tried I did something like this:

$db = mysqli_connect("localhost", "root", "", "testdb");
        $sql = "SELECT * FROM users ORDER BY id DESC";
        $result = mysqli_query($db, $sql);
        while ($row = mysqli_fetch_array($result)) {
            echo "<a href='profiles/uploads/".$row['image']."> ";
                echo "<img  id='img_div' title='".$row['image']."' alt='".$row['image']."'  src='profiles/uploads/".$row['image']."'/>";
                //echo "<p id='img_div'>".$row['desc']."</p>";
                echo "</a>";

But I feel like this is terribly wrong because it is showing everyone's images and not the user's images. I tried looking up answers, but can't seem to find one.

  • 写回答

2条回答 默认 最新

  • duanao2688 2017-08-07 16:57
    关注

    Try this:

    You need to set user in sql query like id = 10.

    And also missing ' last of this line: echo "<a href='profiles/uploads/".$row['image'].">";

    <?php
    $user_id = 10;
    $db = mysqli_connect("localhost", "root", "", "testdb");
    $sql = "SELECT * FROM users WHERE id = ". $user_id ." LIMIT 1";
    $result = mysqli_query($db, $sql);
    
    while ($row = mysqli_fetch_array($result)) {
        echo "<a href='profiles/uploads/". $row['image'] ."'>";
        echo "<img id='img_div' title='".$row['image']."' alt='".$row['image']."' src='profiles/uploads/".$row['quotes']."'/>";
        //echo "<p id='img_div'>".$row['desc']."</p>";
        echo "</a>";
    }
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 SQLServer怎么录入下标
  • ¥100 无网格伽辽金方法研究裂纹扩展的程序
  • ¥15 错误于library(org.Hs.eg.db): 不存在叫‘org.Hs.eg.db’这个名称的程序包,如何解决?
  • ¥60 求一个图片处理程序,要求将图像大小跟现实生活中的大小按比例联系起来的
  • ¥50 求一位精通京东相关开发的专家
  • ¥100 求懂行的大ge给小di解答下!
  • ¥15 pcl运行在qt msvc2019环境运行效率低于visual studio 2019
  • ¥15 MAUI,Zxing扫码,华为手机没反应。可提高悬赏
  • ¥15 python运行报错 ModuleNotFoundError: No module named 'torch'
  • ¥100 华为手机私有App后台保活