Welcome Guest, Not a member yet? Register   Sign In
About array
#1

[eluser]Unknown[/eluser]
Please anybody can help. I am trying to build a gallery and when I try to get images of directory I get images thumbnail but there is one blank thumbnail. So how do I remove this thumbnail . Please can any body help me.

Code:
function get_images($sata) {
        $this->load->helper('directory');
        $files = directory_map($sata);
        $files = array_diff($files, array('.', '..', 'thumbs'));
        
        $images = array();
        
        foreach ($files as $file) {
            $images []= array (
                'url' => base_url().'uploads/' . $file,
                'thumb_url' => base_url(). 'thumbs/' .  $file
            );
        }

vI have uploaded the screenshot. please Help me


Messages In This Thread
About array - by El Forum - 07-05-2011, 02:45 AM
About array - by El Forum - 07-05-2011, 07:16 AM
About array - by El Forum - 07-06-2011, 12:01 AM
About array - by El Forum - 07-06-2011, 02:07 AM



Theme © iAndrew 2016 - Forum software by © MyBB