Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I got this code to list all jpg images inside a directory but it only works on my root directory and I don't know how to point it to my images directory.

<ul>
<?php
foreach (glob("N*T.jpg") as $image): ?>
<li><a href="<?php echo str_replace("T", "F", $image); ?>"><img src="<?php  echo "$image"; ?>"></a></li>
<?php endforeach; ?>
</ul>

Can anyone help me with that?

share|improve this question

4 Answers

up vote 4 down vote accepted

This should work:

glob('images/N*T.jpg');

Otherwise:

chdir('images');
glob('N*T.jpg');
share|improve this answer
I liked the chdir approach. this has really solved it for me. thank you – Jake Mar 9 '11 at 23:05
I tried chdir('images'); method but cant get back using chdir(..); – RainbowHat Jun 16 at 7:34

Just prepend the path to the function call.

glob('/path/to/directory/N*T.jpg');

Note that the resulting array will contain the prepended path as well. If you don't want that do

array_map('basename', glob('/path/to/directory/N*T.jpg'));
share|improve this answer
3  
+1 for remembering the path in the returned values, and the array_map solution to get just the filename – Mark Baker Mar 9 '11 at 21:24
I believe I have a problem with the pathing... if i don't specify a path is goes to my host root and if I do specify a path it gives me no result images... anyone had that problem with FatCow hosting? – Jake Mar 9 '11 at 21:37
@Jake if you dont specify a path it will use directory the script is executed in. If you specify an absolute path it will use an absolute path from the server root (not the document root your website is in). that's probably where your issue is. – Gordon Mar 9 '11 at 21:49
1  
you mean the /Home/mywebsite/ one? I already tried it and it still gave me the same issue :/ I opened a support ticket at their website I hope one of their specialists will be able to assist me. – Jake Mar 9 '11 at 22:02

Just add the path to your function call :

glob("/my/path/to/directory/N*T.jpg")
share|improve this answer
$files = glob("/path/to/directory/N*T.jpg");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.