PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
This code loading all images from folder 'test' but in name order - 'form A to Z'. I want to load images invertly - 'from Z to A'. Do You have any ideas?
In your loop, rather than outputing the image, put it in an array. Call rsort() on that array. Loop through that array & output the images in (now) reverse order.
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.