Bonjour à tous,
Je n'arrive pas à lire (afficher) les fichiers pdf,
un message d'erreur pour toutes les lignes "header" (Cannot modify header information)
le fichier (pdf) demandé s'affiche sous forme de code ascii compréhensible bien sûr !!!
Merci
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7if (is_file($fichier)) { header("Content-type: application/force-download"); header("Content-Transfer-Encoding: Binary"); header("Content-length: ".filesize($fichier)); header("Content-disposition: attachment; filename=\"".basename($fichier)."\""); readfile("$fichier");








Répondre avec citation



Explications et correction de l'erreur "Cannot modify header information - headers already sent"
Affichez votre code en couleurs : [CODE=php][/CODE] (bouton # de l'éditeur) et [C=php][/C]
Partager