图像显示不正常显示的图像很少

时间:2017-06-23 07:44:09

标签: php html mysqli

我正在尝试从我的本地服务器XAMPP显示图像,但代码无法正常工作,只显示少量图像。有人可以解决这个问题吗?

<?php
    include('connection.php');
    $query="select* from video order by 1 DESC Limit 0,10 ";

    $queryrun=mysqli_query($con,$query);

    while($result=mysqli_fetch_array($queryrun)){
        $id=$result['id'];
        $title=substr($result['title'],0,21);
        $date=$result['date'];
        $artist=$result['artist'];
        $imglink=$result['imglink'];
        $vidlink=$result['vidlink'];
        $image=$result['image'];
?>           

<p>
    <center id="fsize">
        <ul id="newpost">
            <li>
                <a href="audio.php?watch=<?php echo $id; ?>/<?php echo $title; ?>">
                    <img src="images/<?php echo $image; ?>" height="40px" width="60px" />
                </a>
                <a href="audio.php?watch=<?php echo $id; ?>/<?php echo $title; ?>">
                    <?php echo $title; ?>
                </a>
            </li>
        </ul>
    </center>
</p>

<?php } ?>

2 个答案:

答案 0 :(得分:0)

<a href="audio.php?watch=<?php echo $id.'/'.$title;?>">
        <img src="<?php echo 'images/'.$image;?>" height="40" width="60" />
    </a>
    <a href="audio.php?watch=<?php echo $id.'/'.$title;?>">
        <?php echo $title; ?>
    </a>

试试这个

答案 1 :(得分:0)

路径可能存在问题。如果你使用的是相对路径,那就好了。但是如果你将图像路径存储为绝对路径而不是它应该是problem.echo存储在数据库中的图像路径并检查路径是否将其绝对转换为相对路径。