CSV separator

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
elio42
User
Posts: 128

CSV separator

Post by elio42 »

Hi,
Please, how can I change comma by semicolon in CSV export.


mobhar
User
Posts: 11737

Post by mobhar »

Change the following code in "cExportCsv" class in the generated "phpfn*.php" file:

$this->Line .= ",";

become:
$this->Line .= ";";


elio42
User
Posts: 128

Post by elio42 »

Thanks, mobhar


Post Reply