Hi,
in my form I have a File Upload element
and the corresponding Upload Files [GH] action. The upload works nicely.
But - when I use the form and choose the file - the field in the data array for the file name stays empty until the Upload Files action finished.
To confirm the empty array field I added a Custom Code before the Upload Files action
and I get: Dateiname: !!
Is there a chance to get a grip on the file name BEFORE the Upload Files action runs ?
Thx a lot,
Doris
in my form I have a File Upload element
<input type="hidden" name="dateiname" value="" alt="ghost" />
<input id="dateiname" title="" type="file" name="dateiname" />
and the corresponding Upload Files [GH] action. The upload works nicely.
But - when I use the form and choose the file - the field in the data array for the file name stays empty until the Upload Files action finished.
To confirm the empty array field I added a Custom Code before the Upload Files action
<?php
echo "Dateiname: !" . $form->data['dateiname'] ."!<br>";
?>
and I get: Dateiname: !!
Is there a chance to get a grip on the file name BEFORE the Upload Files action runs ?
Thx a lot,
Doris