I have a form, all my fields have a script that allows to remember the datas that have been entered in case the forms fail to be submitted.
example
<input type="text" name="title" value="<?php if(isset($_POST["submit"])){echo $_POST["title"];}?>">
I have a input type="file" in my form as well ... is there any way to do the same to the selected file in case the form fails? having a way to remember the selected file...?