Hi there!
Let me know if there is any kind of issue or style violation.
Hi, Nihilistik!
You have this in your view file
<form method="POST" action="" enctype="multipart/form-data">
<input type="files[]" name="file_1" size="20" multiple="multiple"/>
<input type="submit" name="test" value="TEST" />
</form>
But it should be like this according to the w3s documentation
<form method="POST" action="" enctype="multipart/form-data">
<input type="file" name="files[]" size="20" multiple="multiple"/>
<input type="submit" name="test" value="TEST" />
</form>
I really appreciate that this library its useful to other people, please, be free to make any modifications according to your needs,.
