Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

php foreach and glob() function

Tags:

php

glob

PHP versione 5.2.*

my function not working :/

images in server, in folder: /public_html/gallery/images

images in server

<?php
    foreach(glob('gallery/images/*', GLOB_NOSORT) as $image)   
    {  
        echo "Filename: " . $image . "<br />";      
    }  
?>

any help? what im doing wrong?

error i get is : Warning: Invalid argument supplied for foreach() in /home/a9773555/public_html/gallery/index.php on line 2

like image 744
Markus Avatar asked Mar 22 '23 22:03

Markus


1 Answers

The problem looks you have put your php file in gallery folder...

/home/a9773555/public_html/gallery/index.php on line 2

if that is the case (if you put index.php in gallery) then try the following:

<?php
    foreach(glob('images/*', GLOB_NOSORT) as $image)   
    {  
        echo "Filename: " . $image . "<br />";      
    }  
?>

Or do the following,

Put your index.php in your /home folder. then...

<?php
    foreach(glob('a9773555/public_html/gallery/images/*', GLOB_NOSORT) as $image)   
    {  
        echo "Filename: " . $image . "<br />";      
    }  
?>

Give it a try. and let me know...

like image 161
MR.Internet Avatar answered Apr 07 '23 01:04

MR.Internet