Start $body = getDocIris($codeCommune, 'pdf', 0); if($body !== false) { header("Pragma: public"); header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); header("Cache-Control: must-revalidate"); header("Content-type: application/pdf"); header("Content-Length: ".strlen($body)); header('Content-disposition: inline; filename="carte_iris_'.$codeCommune.'.pdf"'); header("Accept-Ranges: ".strlen($body)); echo $body; } else { echo "Fichier inexistant à l'insee !"; }