dswsl2016 2018-10-22 08:44
浏览 124
已采纳

如何在数据库MYSQLi中显示php中的图像?

I want to display images in php from my database using Mysqli. THis is my code in question.php:

    <form class="form-horizontal" role="form" id='login' method="post" action="result.php">

                <?php
                $row = mysqli_query( $conn, "select id,question_name,image from questions where category_id=1 and level_id=1 ORDER BY RAND() LIMIT 10");

                $i = 0;
                $j = 1; $k = 1;
                ?>
                <?php while ( $result = mysqli_fetch_assoc($row) ) {
                     //if ( $i == 0) echo "<div class='cont' id='question_splitter_$j'>";?>
                    <div id='question<?php echo $k;?>' >
                    <p class='questions' id="qname<?php echo $j;?>"> <?php echo $k?>.<?php echo $result['question_name'];?></p>

                     <?php echo "<img src='".$result['image']."'/>";?>
                     <input type="text" name="reponse"   required />
                    <br/>

                    </div>
                    <?php

                          $k++;
                     } ?>   
            </form>

My table is : enter image description here

But the result is like here: enter image description here

can you please help me to display my images correctly?

  • 写回答

1条回答 默认 最新

  • dongyakui8675 2018-10-22 08:46
    关注

    You can do this by base64_encode()ing the binary data to the browser using the data-uri scheme:

    <?php echo '<img src="data:image/png;base64,'.base64_encode($result['image']).'" />'; ?>
    

    Alternatively, you can create an image.php script, that takes an ID, and outputs the binary data to the browser directly:

    $query = mysqli_query("SELECT * FROM ..."); //**Bind** $_GET['ID'] to the query:
    $row = mysqli_fetch_assoc($query);
    header('Content-type: image/png');
    echo $row['image'];
    

    And in your previous code, access it like:

    <?php echo '<img src="image.php?id=', $row['id'], '" />'; ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮