Answers for "get images name from the folder php"

PHP
3

Extract images from a folder in php

<?php
function rasmname(){
 $dirname = "./";
 $images = glob($dirname."*.jpg");
foreach($images as $image) {
 echo '<img src="'.$image.'" /><br />';
  }
}
rasmname();
Posted by: Guest on August-08-2020
0

how to get file name in upload images in php

php is a server side language and it work to crate and rewad mean curd
Posted by: Guest on March-25-2022

Code answers related to "get images name from the folder php"

Browse Popular Code Answers by Language