I've a php code that extract some information from a .dat file uploaded by the user. Now i want to apply this treatment on a set of uploaded file. so the user can choose a set of file when he click upload the treatment has to be done on each file. i've tried this but it's not working :
<form method="post" enctype="multipart/form-data">
<label>Selectionner le fichier .dat</label>
<input type="file" name="excel" />
<br />
<input type="submit" name="import" class="btn btn-info" value="Import" />
</form>
thank you in advance.