Accessing my array variable
I have a form that can attach multiple files, it uses a bit of jquery
<cfform action="index.cfm" method="post" class="P10" style="padding:20px; border:1px solid red;">
<cfinput type="file" name="multi" class="multi" maxlength="2"/>
<input type="submit" name="submit" value="submit" />
</cfform>

The input is called multi, I presume it is an array or stucture. but how can i access the structure?
I tried <cfdump var="#FORM.mult[0]i#" /> but they do not seem to work? Any ideas?
Thanks,
H.
