Export csv or xlsx
How can I export csv or xlsx file using function getHeaderActions without using any plugin
8 Replies
Why no plugins? Creating a CSV is not too hard but an XLSX file is more complex.
because I am told to do it manually so no plugins , is there any way? @pboivin
Do you know how to save a file in PHP?
yes
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
Yeah I've done something like this before for reading csv file
That's pretty much all you need... make a query, assemble your CSV into an array, write it to a file
oh got it .......thanks π