Hello forums !!
i would like to know how to export the data in .csv format ?
suppose i had an array holding values:

$data_arr[$i][0] = "xx";
$data_arr[$i][0] = "xx";
$data_arr[$i][0] = "xx";
$data_arr[$i][0] = "xx";

where $i varies from 0 to n

I would like to export this data in .csv format,
how could this be accomplished ?
Thanks in advance to all of you

    If running PHP 5.1 or later, see [man]fputcsv/man.

      Write a Reply...