Try out this tool: http://www.legend.ws/blog/
Main Topics
Browse All TopicsHi expert,
Am trying to import a .csv file (creating through Excel) into MYSQL using PHPMYADMIN, I have problem and getting lots of error messages.
I've put the column name, ad still not inserting data.
Can somebody please help me.
Regards,
www-i-p-mu
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Try out this tool: http://www.legend.ws/blog/
why do it with PHP ?? you can import csv file directly to mysql.
if you need to do that on your host server, import that file to your local server (on your development machine), dump the database to an SQL file, and use that SQL file with phpMyAdmin
to load the file into mysql, have a look here for full explanation http://www.modwest.com/hel
LOAD DATA LOCAL INFILE '/importfile.csv'
INTO TABLE test_table
(field1, filed2, field3);
to create an SQL of the created database, use this command from the command line or terminal
mysqldump --user root --skip-add-drop-table databaseName tableName >c:\db.sql
this will create an sql file that won't drop existing table. to remove existing table, delete --skip-add-drop-table
Business Accounts
Answer for Membership
by: mattaobPosted on 2008-01-16 at 03:57:51ID: 20670963
what error messages are you getting?