views:

456

answers:

1

How to get records from Excel sheet to Mysql database using Codeigniter php?

+1  A: 

Here is the best place to start: Code Igniter Excel library

You'll need to include the library (either in config/autoload, or with $this->load->excel) and fire up the examples that are listed in the CI wiki at that link. It's pretty straight forward.

Alex Mcp