tableau.php 818 Bytes
<div class="row">
	<div class="col-6 col-md-6 offset-3 offset-md-3">
		<h1 style="margin-bottom:20px; border-bottom:1px solid #CCC; padding-bottom:20px;"><i class="fa fa-info-circle"></i> Informations complémentaires</h1>
		<table class="table table-striped table-bordered">
			<tbody>
				<tr>
					<td>Nom du fichier</td>
					<td><?php echo $_FILES['fichier']['name'];?></td>
				</tr>
				<tr>
					<td>Type</td>
					<td><?php echo $_FILES['fichier']['type'];?></td>
				</tr>
				<tr>
					<td>Localisation</td>
					<td><?php echo $_FILES['fichier']['tmp_name'];?></td>
				</tr>
				<tr>
					<td>Erreur</td>
					<td><?php echo $_FILES['fichier']['error'];?></td>
				</tr>
				<tr>
					<td>Taille</td>
					<td><?php echo $_FILES['fichier']['size'];?></td>
				</tr>
			</tbody>
		</table>
	</div>
</div>