Jul 8th, 2009, 11:27 AM
Anyone?
Perhaps if I explain further.
In my form I have the following field:
In my review (results) page I have:
When I test the form, the result looks like:
Another thing I should mention is that there are a number of file upload fields in the form, and only one of them shows in the results.
What am I doing wrong?
Since it's a file, should I be calling this differently? I couldn't find any examples in the documentation or in the tutorials (could be blind).
Help!
Perhaps if I explain further.
In my form I have the following field:
Code:
<input id="intlUpload" name="intlUpload" type="file" class="file" value="<?=@$fields["intlUpload"]?>" />
In my review (results) page I have:
Code:
<?php
if (!empty($fields['intlUpload']))
{
echo "International PDF: " . $fields['intlUpload'] . "<br />";
}
?>
When I test the form, the result looks like:
Quote:International PDF: Array
Another thing I should mention is that there are a number of file upload fields in the form, and only one of them shows in the results.
What am I doing wrong?
Since it's a file, should I be calling this differently? I couldn't find any examples in the documentation or in the tutorials (could be blind).
Help!