I've stored an array in an html hidden input and now need to transfer that array to my delphi function. I've tried:
var
fileArray : array of string;
fileArray := formvar('fileArray', '');
but this gives an incompatible types error when I compile. How can I convert the string into an array so that it can be stored in the variable? Also, if it helps, the formvar fileArray is comma delimited.