I have a form where an administrator will fill in user data, but I need this administrator to enter a .zip folder where you will have user photos.
I'm using a button to select the .zip file, but I need to unzip this file and then use what's inside it.
<form action='pageinicial.php' method='GET' enctype='multipart/form-data'>
<div class='diview'>
Certifique-se de preencher os campos login, senha, nome e email!
<table>
<thead>
<tr>
<th >login</th>
<th >senha</th>
<th >nome</th>
<th >departamento</th>
<th >nivel</th>
<th >email</th>
</tr>
</thead>
<tbody>
<tr>
<td id='class_td'><input type='text' name='loginusu' value=''></td>
<td id='class_td'><input type='text' name='senhausu' value=''></td>
<td id='class_td'><input type='text' name='nomeusu' value=''></td>
<td id='class_td'><input type='text' name ='departamentousu' value=''></td>
<td id='class_td'><input type='text' name='nivelusu' value=''></td>
<td id='class_td'><input type='email' name='emailusu' value=''></td>
</tr>
</tbody>
</table>
</div>
<input type='submit' value='Adicionar'/>
<input type='file' name='foto' /><br /><br />