0

I am using below code for force to download text file in php, below code working properly but after download text file it's losing format of text file or not showing in proper format.

$file="license_agreement.txt";
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.basename(`enter code here`$file).'"'); 
header('Content-Length: ' . filesize($file));
readfile($file);

Can anyone please let me know what mistaken i have done.

Vish V
  • 117
  • 1
  • 7

0 Answers0