<?php
  $fichier
=$_FILES['fichier'];
  
$titre=$_REQUEST['titre'];

  if(
$fichier['error']==UPLOAD_ERR_OK) {
    
copy($fichier['tmp_name'],'../../fichiers/'.$titre);
  }
  
  
header("Location: affiche_liste.php");
?>