Multiple Bytes in WWWform.AddBinaryData

Hi,

Im adding multiple byte arrays to a form, my question is upon retrieving those arrays through www.bytes from downloading. Will they be split into multiple arrays again or will i receive one big array of all combined? if so how do i go on about splitting them up after or creating a spacing so that they are automatically split upon download.

Thnx

Cheers,

AddBinaryData is used to upload files, you specify the parameter fieldName that can be used in your web file to retrieve it. For example in PHP you’ll retrieve it by using $_FILES[“fieldNameSpecifiedInAddBinaryData”]