I am importing large CSV files, for some reason one column for ean13 values,
the values in the file are, for some reason showing in Excel as:
6.63023E+11 and 7.31413E+11 even though the real values In the csv file are:
663023000541 and 731413030574
This is how we currently import the values:
$ean13 = addslashes($line[30]);
$ean13 = str_replace('+', 'plus', $ean13);
$ean13 = str_replace('.', 'DOT', $ean13);
But, for some reason the values ending up in the table are: (13 char field)
6DOT63023Eplu and 7DOT31413Eplu
they should import as 663023000541 and 731413030574
How can I import these values correctly?