如何从服务器上的文件夹向网站添加图像


How to add images to a website from a folder on server

我是网络开发的初学者。我已经成功地将图像从我的文件夹移动到public_html下的hostinger文件夹中,现在我需要在网站的图库中显示这些图像。我如何使用php来做到这一点,我的文件夹名称是uploads。?

您可以循环浏览该目录中的图像,并在页面中回显它们:

$dir = "/uploads";
//get the list of all files with .jpg extension in the directory and safe it in an array named $images
$images = glob( $dir );
//extract only the name of the file without the extension and save in an array named $find
foreach( $images as $image ):
    echo "<img src='" . $image . "' />";
endforeach;