如何根据用户循环图像名称

时间:2016-04-18 14:20:02

标签: php mysql

我试图根据用户名

在我的数据库中循环播放照片的名称
<?php
        $sql = "SELECT Name FROM images
        WHERE user=$user";      
        $result = mysqli_query($con, $sql);

        $name = $row['Name'];



        // loop through the array of files and print them all in a list
        for($index=0; $index < $indexCount; $index++) {
            $extension = substr($dirArray[$index], -3);
            if ($extension == 'jpg'){ // list only jpgs
                echo '<div class="container22"><img class="testing2 img-thumbnail" src="users/userimg/'.$name.'' . $dirArray[$index] . '" alt="Image" /></div>'; 
            }   
        }

        ?>

1 个答案:

答案 0 :(得分:-1)

我不知道你的问题究竟是什么,但你可以在PHP中循环一个字符串并将字符串称为数组

$str = "abcd";
for($i = 0; $i < strlen($str); $i++){
    echo $str[$i] ."<br/>";
}

输出是 一个 b C d