Posted by Jim Moseby on 10/20/30 11:29
> -----Original Message-----
> From: Brian Dunning [mailto:brian@briandunning.com]
> Sent: Monday, October 17, 2005 10:37 AM
> To: php-general@lists.php.net
> Subject: [PHP] Uploaded CSV -> database
>
>
> Does anyone have an example of code to process a CSV file submitted
> via a file upload and parse it out in order to write its
> records to a
> db?
>
With MYSQL (assuming permissions and such are in order) You would simply:
$sql="load data local infile '/path/to/csv' into table tablename fields
terminated by ','";
JM
Navigation:
[Reply to this message]
|