Re:
Just upload your images with an FTP program: https://filezilla-project.org/
Can you use PHP with your host?
If so you could create a PHP web page with a little bit of code to scan a directory and show all the images in it, something like this:
Just upload your images with an FTP program: https://filezilla-project.org/
Can you use PHP with your host?
If so you could create a PHP web page with a little bit of code to scan a directory and show all the images in it, something like this:
Code:
$strDir = "YourDirectoryName";
$arrFiles = scandir($strDir);
if (count($arrFiles) > 0) {
for($intCount = 0; $intCount < count($arrFiles); $intCount++){
$strFile = $arrFiles[$intCount];
if (($strFile != ".") && ($strFile != "..")) {
if ((strpos($strFile, ".jpg") !== false) || (strpos($strFile, ".gif") !== false)) {
echo '<img src="' . $strDir . '/' . $strFile . '" width="200">';
}
}
}
}