Bonjour,
 
J'ai un script de téléchargement de fichier dans lequel j'aimerai afficher un message
 
Code :
 - @header("Content-disposition: attachment; filename=".$nom_fichier);
 -   header("Content-Type: application/force-download" );
 -   header("Content-Type: application/download" );
 -   header("Content-Length: ".$taille_fichier);
 -   header("Cache-control: private" );
 -   header("Content-Type: application/octetstream" );
 -   header("Content-Type: application/octet-stream" );
 
  | 
 
Si j'ajoute après ce code 
rien ne s'affiche.
 
Si je regarde le code source, je vois
Code :
 - <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title></title></head><body></body></html>
 
  | 
Alors que mon code html ne contient pas une ligne de code html
 
Comment faire pour ajouter qqch dans la balise <body> ?
 
Merci d'avance pour votre aide