Export csv Delimiter

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

Export csv Delimiter

Post by ngneer »

Hi,

anyone know how to change delimiter, when we export to csv a table ?
at the moment the delimiter is "," but i want to change to "|"

Thanks


mobhar
User
Posts: 11703

Post by mobhar »

Simply replace the following code in the generated "phpfn*.php" file:
case "csv":
if ($this->Line <> "")
$this->Line .= ",";

to:
case "csv":
if ($this->Line <> "")
$this->Line .= "|"; // <--- the change is here


Post Reply