Forked from theredstapler/PHPExcel Tutorial - Read an Excel File.php
Last active
May 27, 2021 13:33
-
-
Save ffuentese/ac9c53c77db4d79bab25673017dafd0d to your computer and use it in GitHub Desktop.
Example of reading an excel file with PHPExcel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype> | |
<html> | |
<head> | |
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |
<script> | |
var _validFileExtensions = [".xls", ".xlsx", ".csv"]; | |
function ValidateSingleInput(oInput) { | |
if (oInput.type == "file") { | |
var sFileName = oInput.value; | |
if (sFileName.length > 0) { | |
var blnValid = false; | |
for (var j = 0; j < _validFileExtensions.length; j++) { | |
var sCurExtension = _validFileExtensions[j]; | |
if (sFileName.substr(sFileName.length - sCurExtension.length, sCurExtension.length).toLowerCase() == sCurExtension.toLowerCase()) { | |
blnValid = true; | |
break; | |
} | |
} | |
if (!blnValid) { | |
alert("Sorry, " + sFileName + " is invalid, allowed extensions are: " + _validFileExtensions.join(", ")); | |
oInput.value = ""; | |
return false; | |
} | |
} | |
} | |
return true; | |
} | |
</script> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>PHPExcel reading an Excel file</h1> | |
<p class="lead">This code reads the first four columns of an Excel file. <a href="https://github.com/PHPOffice/PHPExcel/">PHPExcel available here</a> Just download the Classes folder</p> | |
<?php | |
if(isset($_FILES['excel']) && $_FILES['excel']['error']==0) { | |
require_once "Classes/PHPExcel.php"; | |
$tmpfname = $_FILES['excel']['tmp_name']; | |
$excelReader = PHPExcel_IOFactory::createReaderForFile($tmpfname); | |
$excelObj = $excelReader->load($tmpfname); | |
$worksheet = $excelObj->getSheet(0); | |
$lastRow = $worksheet->getHighestRow(); | |
echo "<table class=\"table table-sm\">"; | |
for ($row = 1; $row <= $lastRow; $row++) { | |
echo "<tr><td scope=\"row\">"; | |
echo $worksheet->getCell('A'.$row)->getValue(); | |
echo "</td><td>"; | |
echo $worksheet->getCell('B'.$row)->getValue(); | |
echo "</td><td>"; | |
echo $worksheet->getCell('C'.$row)->getValue(); | |
echo "</td><td>"; | |
echo $worksheet->getCell('D'.$row)->getValue(); | |
echo "</td><tr>"; | |
} | |
echo "</table>"; | |
} | |
?> | |
<div class="container"> | |
<form action = "" method = "POST" enctype = "multipart/form-data"> | |
<input type = "file" name = "excel" onchange="ValidateSingleInput(this)" /> | |
<input type = "submit"/> | |
</form> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome!