Changeset 432
- Timestamp:
- 08/15/08 13:44:27
- Files:
-
- trunk/phpbms/include/parsecsv.lib.php (modified) (1 diff)
- trunk/phpbms/modules/base/general_import.php (modified) (1 diff)
- trunk/phpbms/modules/base/users_import.php (modified) (1 diff)
- trunk/phpbms/modules/bms/clients_import.php (modified) (1 diff)
- trunk/phpbms/modules/bms/products_import.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/phpbms/include/parsecsv.lib.php
r427 r432 360 360 $strlen = strlen($data); 361 361 362 // --nrieb-- Adding support for escaping quotes with a backslash (\) character 363 $data = str_replace('\"', '""', $data); 364 362 365 // walk through each character 363 366 for ( $i=0; $i < $strlen; $i++ ) { trunk/phpbms/modules/base/general_import.php
r431 r432 183 183 Delimeters are commas (,) and enclosures are double-quotes ("). If you 184 184 wish to escape a double-quote character inside of an enclosure, add another 185 double-quote character (e.g ...,"Benny ""The Jet"" Rodriguez",...). 185 double-quote character (e.g ...,"Benny ""The Jet"" Rodriguez",...), or with 186 a backslash character (\) (e.g ...,"Benny \"The Jet\" Rodriguez",...). 186 187 </p> 187 188 <p> trunk/phpbms/modules/base/users_import.php
r431 r432 182 182 Delimeters are commas (,) and enclosures are double-quotes ("). If you 183 183 wish to escape a double-quote character inside of an enclosure, add another 184 double-quote character (e.g ...,"Benny ""The Jet"" Rodriguez",...). 184 double-quote character (e.g ...,"Benny ""The Jet"" Rodriguez",...), or with 185 a backslash character (\) (e.g ...,"Benny \"The Jet\" Rodriguez",...). 185 186 </p> 186 187 <p> trunk/phpbms/modules/bms/clients_import.php
r431 r432 201 201 Delimeters are commas (,) and enclosures are double-quotes ("). If you 202 202 wish to escape a double-quote character inside of an enclosure, add another 203 double-quote character (e.g ...,"Benny ""The Jet"" Rodriguez",...). 203 double-quote character (e.g ...,"Benny ""The Jet"" Rodriguez",...), or with 204 a backslash character (\) (e.g ...,"Benny \"The Jet\" Rodriguez",...). 204 205 </p> 205 206 <p> trunk/phpbms/modules/bms/products_import.php
r431 r432 183 183 Delimeters are commas (,) and enclosures are double-quotes ("). If you 184 184 wish to escape a double-quote character inside of an enclosure, add another 185 double-quote character (e.g ...,"Benny ""The Jet"" Rodriguez",...). 185 double-quote character (e.g ...,"Benny ""The Jet"" Rodriguez",...), or with 186 a backslash character (\) (e.g ...,"Benny \"The Jet\" Rodriguez",...). 186 187 </p> 187 188 <p>