Hi
I know to show an image in html is this
<img src="pathname\image.jpg">
However the image name is dynamic and not known until it has been uploaded nor the number of images.
I have created a script which allows images of a sports team to be uploaded. I would like to show a final web page of all images submitted for validation. I could rename them all to a standard naming system at the upload stage, but will not know the exact number until the validation has been clicked.
How can I use php to show all the images with the img src tag?
Cheers