Salut
J'ai un script qui lance un téléchargement, j'utilise cette méthode via allopass pour pas que les internautes voient le chemin précis du zip
Code :
- $downloadurl = "http://www.site.com/fichier.zip";
- header("Content-type: application/force-download" );
- header("Content-Disposition: attachment; filename=fichier.zip" );
- header("Content-Length: ".$size);
- readfile($downloadurl);
|
J'aimerai avant que ca lance le téléchargement, afficher un print pour y coller un tag d'impression.
Quand je met un print avant le TAG ne fonctionne pas, si je retire le header() ca marche.
QQun aurait une solution ?