卡在显示图像上

时间:2019-03-12 06:44:13

标签: php html mysql database php-7

我正在尝试显示数据库中的图像,但是该图像没有出现,而是出现了图像图标,请参见图像

this is the image icon with 2 warnings

if(isset($_POST['submit2']))
{
    $usertable = "table1";
        $db  = new mysqli('localhost', 'root', '', 'testdb') or die("unable to dbect");

        $sql = mysqli_query($db,"SELECT image1 FROM table1 WHERE id = '1'");
        $sth = $db->query($sql);
        $result = mysqli_fetch_array($sth);
        echo '<img src="data:image/jpeg;base64,'.base64_decode( $result['image'] ).'"/>';
}

如果有人可以修复代码, 非常感谢你

0 个答案:

没有答案