Blame view

site/tableau.php 818 Bytes
705b4085   root   MAJ Site
1
  <div class="row">
b268e61c   grouille   MAJ
2
  	<div class="col-6 col-md-6 offset-3 offset-md-3">
3183a785   grouille   Test de lancement...
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>
705b4085   root   MAJ Site
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
  		<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>