In this post, we will show you how you can import Excel file data to MySql Database using PHPExcel Library.
Nowadays, in web development data import is an important functionality and most of the website user wants that his spreadsheet data stores in database with more manageable form. For achieve this result we are using PHPExcel library to import a excel sheet into a MySql database with PHP code.
Before starts code, here we need some initial steps
First, we need to install PHPExcel library to read excel data. We can install it using Composer. If your system is not installed composer, then go to official website https://getcomposer.org/
After installed composer open cmd and write command on cmd-
C:>Users>composer
If Above screen show in cmd than composer successfully installed.
Now in command prompt go to the your project directory where you want to install PHPExcel Libaray and run command
D:XAMPPhtdocsexampleexcel_to_mysql>composer require phpoffice/phpexcel
After this, you can see that Composer has downloaded all libraries under the ‘vendor‘ directory of your project root. Now create a folder under root folder for upload files “Folder name is files_upload“. Here we show you folder structure.
CREATE EXCEL FILE
we create a sample Excel file.
Now, we will create a table in MySql Database.
CREATE TABLE IF NOT EXISTS `emp_records` ( `Id` int(11) NOT NULL AUTO_INCREMENT, `emp_id` int(11) NOT NULL, `emp_name` varchar(100) NOT NULL, `salary` varchar(11) NOT NULL, `department` varchar(100) NOT NULL, PRIMARY KEY (`Id`) ) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1
Now, we will create connection.php for stable connection with Database.
Now, we will create index.php file. where we create html and php code for upload and insert excel data into MySql table.
Below is code:.
getMessage());
}
$sheet = $objPHPExcel->getSheet(0);
$total_rows = $sheet->getHighestRow();
$highestColumn = $sheet->getHighestColumn();
$highestColumnIndex = PHPExcel_Cell::columnIndexFromString($highestColumn);
for ($row = 2; $row <= $total_rows; ++ $row) {
for ($col = 0; $col < $highestColumnIndex; ++ $col) {
$cell = $sheet->getCellByColumnAndRow($col, $row);
$val = $cell->getValue();
$records[$row][$col] = $val;
}
}
foreach($records as $row)
{
$rollno = isset($row[0]) ? $row[0] : '';
$name = isset($row[1]) ? $row[1] : '';
$age = isset($row[2]) ? $row[2] : '';
$program = isset($row[3]) ? $row[3] : '';
// Insert into database
$query = "INSERT INTO emp_records (emp_id,emp_name,salary,department)
values('".$rollno."','".$name."','".$age."','".$program."')";
mysqli_query($GLOBALS["___mysqli_ston"], $query);
}
echo "Data inserted in Database";
unlink($file);
} else {
echo "File not uploaded!";
}
} else {
echo "Please upload excel sheet.";
}
} else {
echo "Please upload excel file.";
}
}
?>
PHP Import Excel File Data Into MySql Database Using PHPExcel Library
Upload Excel File
After successfully run the code. Excel data inserted into Mysql Table.
I hope this article helps you.
Thanks for visiting Inflay.com