How To Display Images From Folder Using Codeigniter?
If you lot involve to display images from folder/directory inward the CodeIgniter, hence the Directory Helper is what you lot looking for. The Directory Helper file contains functions that aid inward working alongside directories.
<?php $this->load->helper('directory'); //load directory helper $dir = "uploads/images/"; // Your Path to folder $map = directory_map($dir); /* This business office reads the directory path specified inward the laid out parameter as well as builds an array representation of it as well as all its contained files. */ foreach ($map every 2nd $k) {?> <img src="<?php echo base_url($dir)."/".$k;?>" alt="If you lot involve to display images from folder How To Display Images From Folder Using Codeigniter?"> <?php } ?>Result: You volition expire all the images from the folder. Sumber http://developer-paradize.blogspot.com
Comments
Post a Comment