Hay Gas K,
Welcome to the App Engine Google Groups! If I understand your situation correctly, there are several photos stored in a Google Cloud Storage bucket. You would like the your application to display the photos to the end user.
How is the list of photos determined?
If the list does not change, the paths to the images could be hardcoded though that's not a great practice. More likely than not, the list will change. Thus, you could use the PHP Client Llibrary with the
Objects: list API to list the objects in a given bucket. The result will contain the data you need to list the photos.
For a more dynamic user experience with likely less network overhead and if the list has very few restrictions, I would suggest using the Javascript client library from the client side to fetch images. This can cut down some server traffic.
You mention that this the example you posted is not working? What results are you seeing?