|
|
| |
1. One "error" needs correction |
|
Reply |
|
|
 David Brucas | 2006-11-05 07:11:52 |
Line 154 of Csv2Db.class.php
$valrow[$tableHeader[$i]] = $col;
should be corrected to
$valrow[$tableHeader[$i]] = mysql_real_escape_string($col);
in order to avoid errors when bringing in csv data with single quotes in a cell. |
| |
2. Re: One "error" needs correction |
|
Reply |
|
|
 David Brucas | 2006-11-05 19:01:05 - In reply to message 1 from David Brucas |
| Actually, this should be extracted down to the database abstraction that is being used... |
|