Hello,
What part of code and where I could change and have:
1. csv file delimiter ";"
2. Data type as Text
3. Remove header line in file
Thank You!
1 Answers
Edit jqgrid_dist.php,
Find this code…
$fp = fopen('php://output', 'w');
foreach ($arr as $key => $value)
{
fputcsv($fp, $value);
}
die;
You can change it to …
$arr = array_shift($arr); // to remove header
$fp = fopen('php://output', 'w');
foreach ($arr as $key => $value)
{
fputcsv($fp, $value, ";"); // 3rd arg to ;
}
die;
Your Answer