Skip to content

Instantly share code, notes, and snippets.

View ffuentese's full-sized avatar
😃
improving PHP and learning Vue

Francisco Fuentes ffuentese

😃
improving PHP and learning Vue
View GitHub Profile
@ffuentese
ffuentese / PHPExcel Tutorial - Read an Excel File.php
Last active May 27, 2021 13:33 — forked from theredstapler/PHPExcel Tutorial - Read an Excel File.php
Example of reading an excel file with PHPExcel
<!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;