Import an Excel file into MySQL
30th Jul 2006
After uploading the Excel file to your web space, use this SQL:
load data local infile '/complete/path/to/your_csv_file.csv' into table table_name
fields terminated by ','
(field_1, field_2, field_3, field_4)
Possibly related?
Based on the tags from this post.
30 AJAX tutorials
A list of 30 tutorials on AJAXy stuff like Using XMLHttpRequest with php and mysql, AJAX Drag and Drop and AJAX File Uploader. [...]
- up ↑
- programming
- 26th Dec 2007
PHP file upload progress bar
PECL [...]
- up ↑
- programming
- 8th Jan 2007