F
Filament2y ago
Noor

Export csv or xlsx

How can I export csv or xlsx file using function getHeaderActions without using any plugin
8 Replies
Patrick Boivin
Why no plugins? Creating a CSV is not too hard but an XLSX file is more complex.
Noor
NoorOP2y ago
because I am told to do it manually so no plugins , is there any way? @pboivin
Patrick Boivin
Do you know how to save a file in PHP?
Noor
NoorOP2y ago
yes
Patrick Boivin
And do you know how to create your CSV, line by line? Something like this https://www.php.net/manual/en/function.fputcsv.php#refsect1-function.fputcsv-examples
Noor
NoorOP2y ago
Yeah I've done something like this before for reading csv file
Patrick Boivin
That's pretty much all you need... make a query, assemble your CSV into an array, write it to a file
Noor
NoorOP2y ago
oh got it .......thanks 🙂

Did you find this page helpful?