Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hello! Thank for a great package. It' very helpful. I'm a newbie and maybe my question is strange. In my form I need to attach more than one file. So, I understand that I need to add the multiple attribute, but I can't figure out how to do it.
Sounds like you want to build a custom field type. You can see how to do that here: https://www.formulate.rocks/articles/custom-field-types
You can use the upload field as a guide:
It allows you to upload a single file. You'll want to create a similar one that allows you to upload multiple files.
for ($i = 0; $i < $fileCount; $i++) { ?> <p>File #<?= $i+1 ?>:</p> <p> Name: <?= $myFile["name"][$i] ?><br> Temporary file: <?= $myFile["tmp_name"][$i] ?><br> Type: <?= $myFile["type"][$i] ?><br> Size: <?= $myFile["size"][$i] ?><br> Error: <?= $myFile["error"][$i] ?><br> </p> <?php } } ?> </body>
Try this is it working or not let me know myaarpmedicare.com
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
Attach multiply files
Hello! Thank for a great package. It' very helpful. I'm a newbie and maybe my question is strange. In my form I need to attach more than one file. So, I understand that I need to add the multiple attribute, but I can't figure out how to do it.
Sounds like you want to build a custom field type. You can see how to do that here: https://www.formulate.rocks/articles/custom-field-types
You can use the upload field as a guide:
It allows you to upload a single file. You'll want to create a similar one that allows you to upload multiple files.
Try this is it working or not let me know myaarpmedicare.com
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.