Blame view

site/tableau.php 835 Bytes
705b4085   root   MAJ Site
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  <div class="row">
  	<div class="col-4 col-md-4 offset-4 offset-md-4">
  		<h1 style="margin-bottom:20px; margin-top:30px; 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>