0
I am trying to download a CSV file in the directory but it is downloaded in . TXT
Unsuccessful attempts (PHP 7.1)
header('Content-type: text/csv; charset=UTF-8')
header("Content-Type: application/csv");
header('Content-Description: File Transfer');
header('Content-Type: application/force-download');
Code
<a download href="<?php echo$csv; ?>" class="btn btn-success"><i class="fa fa-arrow-circle-down" aria-hidden="true"></i> BAIXAR CSV</a>
$csv ='assets/tabelas-csv/planilha-produtos-'.$date.'.csv';
I tried everything but that and it worked, thank you !
– denis