Page 1 of 1

Limiting multiple image upload to XX images

Posted: Sun Aug 25, 2013 7:20 pm
by PinkPHP

I love the ability to upload multiple images under one field. I realize that this is subject to the field size vs. the file names. I had it set to VARCHAR 255, then changed that number to allow the maximum amount. However, the length of the filename is not what concerns me, but I want to limit the amount of images uploaded to this field to maybe 25 images. Is there a way to do this through PHPMaker or will I have to hard code it in later?

Thanks, and glad to see you're still developing these great tools (former ASPMaker user)


Re: Limiting multiple image upload to XX images

Posted: Mon Aug 26, 2013 10:19 am
by danielc

You have to write your code to control the number of uploaded images. The picture name will be separated by ",". So you may able to count the number of images uploaded already.


Re: Limiting multiple image upload to XX images

Posted: Mon Aug 26, 2013 11:59 am
by Webmaster

As suggested by danielc, use the client script Form_CustomValidate to validate against the file name (id = "fn_x_<FieldName>")