Hi,
I built a page to manage all image details of a photo gallery (title, desc, keywords, delete, etc.). For each image, there is a file input to allow to replace the image. Obviously, each file input name is unique.
So, if the page displays 15 images, I might want to replace only two of thoses.
When I loop over all images, I thought I could simply call $web->receive by passing the file input name ($formFieldName), but whatever I pass to this variable, the receive function uploads everything.
So, how I can use the parameter $formFieldName to upload only the file from this input name, then do the same for other submitted files?
Thanks