Category
PhpSpreadsheet
Convert An Excel File To An HTML Table In PHP Using PHPSpreadSheet
This article shows how to convert an Excel file into an HTML table with the latest version of PhpSpreadsheet using plain PHP. The point of doing it in…
July 31, 2026 · PhpSpreadsheet
Loop Through Cells With Iterators In PHP Using PHPSpreadSheet
This article shows how to loop through the cells of a worksheet with the row and cell iterators in the latest version of PhpSpreadsheet using plain PHP. toArray()…
July 30, 2026 · PhpSpreadsheet
Convert An Excel File To CSV In PHP Using PHPSpreadSheet
This article shows how to convert an Excel file to CSV with the latest version of PhpSpreadsheet using plain PHP. Reading the workbook is the easy half —…
July 29, 2026 · PhpSpreadsheet
Handle An Uploaded Excel File In PHP Using PHPSpreadSheet
This article shows how to accept an Excel file uploaded from an HTML form and read it with the latest version of PhpSpreadsheet using plain PHP. Reading the…
July 28, 2026 · PhpSpreadsheet
Convert An Excel File To PDF In PHP Using PHPSpreadSheet
Convert an Excel file to a PDF with PhpSpreadsheet by pairing it with the Dompdf renderer — load the workbook, hand it to the PDF writer, and save…
July 27, 2026 · PhpSpreadsheet
Freeze The Header Row In Excel Files In PHP Using PHPSpreadSheet
Keep the header row of an Excel export in view while the rest scrolls, using PhpSpreadsheet's freezePane() — one line that turns a long, unreadable sheet into a…
July 26, 2026 · PhpSpreadsheet
Create An Excel Chart In PHP Using PHPSpreadSheet
Add a real, editable column chart to an Excel file with PhpSpreadsheet — point a DataSeries at your cells, anchor the Chart on the sheet, and remember setIncludeCharts(true).
July 25, 2026 · PhpSpreadsheet
Work With Multiple Worksheets In Excel Files In PHP Using PHPSpreadSheet
Build an Excel file with several worksheets: rename the first sheet, add more with createSheet(), give each its own data, and pick which tab is selected when the…
July 24, 2026 · PhpSpreadsheet
Convert A CSV File To Excel In PHP Using PHPSpreadSheet
Read a CSV with PhpSpreadsheet's Csv reader — setting the delimiter, enclosure and encoding up front — then save it straight back out as a real .xlsx workbook.
July 23, 2026 · PhpSpreadsheet