Posts by danillo.sdd • 1 point
3 posts
-
0
votes2
answers168
viewsA: Php - Download files by application get corrupted
The txt file downloaded.. More the content of the original document is: abcdef And what was downloaded when opening is: <
-
0
votes2
answers168
viewsA: Php - Download files by application get corrupted
I did so: ini_set ("display_errors", "1"); error_reporting (E_ALL); $arquivo = $_GET["C:/teste/1.txt"]; $tipo="application/txt"; header("Content-Type: ".$tipo); header("Content-Length:…
-
0
votes2
answers168
viewsQ: Php - Download files by application get corrupted
When downloading files or documents through my application, they successfully download, more when opening are corrupted. //FILE DOWNLOAD $arquivo = 'C:/teste/arquivo.zip'; header("Content-Type:…