This topic is locked

Import

4/17/2008 2:34:18 PM
PHPRunner General questions
K
kklh author

Hi
When using the import page it uses the , as seperator but by default we are using the ; as seperator where can i change this.
reg. Kim

Sergey Kornilov admin 4/17/2008

Kim,
you can change the following line in import.php file:
$fields = explode(",", $line2);
here is how it needs to be to use semicolon as a separator:
$fields = explode(";", $line2);