This topic is locked
[SOLVED]

 Export To CSV or Excel to use semicolon as a delimeter instead of comma

10/21/2012 6:39:50 AM
PHPRunner General questions
N
netmedia59 author

Hello,
In PHPR 6.2, is there a way to export and import and use semicolon as a delimeter instead of comma ?
Thanks
Olivier

Lille (FRANCE)

C
cgphp 10/21/2012

You can change the following line in include/import_functions.php file:

$fields = explode(",", $line2);


Replace the first comma with a semicolon:

$fields = explode(";", $line2);
N
netmedia59 author 10/21/2012

Hey Cristian,
Thanks for your answer

Got it for import

Is there the same way to "export" ?
Merci
Olivier

Lille (FRance)