Site Tools


Hotfix release available: 2025-05-14b "Librarian". upgrade now! [56.2] (what's this?)
Hotfix release available: 2025-05-14a "Librarian". upgrade now! [56.1] (what's this?)
New release available: 2025-05-14 "Librarian". upgrade now! [56] (what's this?)
prog:php:samples:csv
// Algatab CSV faili downloadi
$file_name="ipdb_export_".date("Y-m-d").".csv";
Header("Cache-Control: ");
Header("Content-Type: application/octet-stream; name=\"$file_name\"");
Header("Content-Disposition: attachment; filename=\"$file_name\"");
 
$out = fopen('php://output', 'w');
 
foreach ($data as $row)
    foreach ($row as $cell)
        $csv_row[] = mb_convert_encoding($cell, 'UTF-16LE', "UTF-8"); // encodingu conver vajalik, sest muidu ei suuda Excel UTF-8 stringe näidata
 
fputcsv($out, $csv_row, ';');
fclose($out);
exit;
prog/php/samples/csv.txt · Last modified: 2019/09/20 15:52 by 127.0.0.1