About

Blog » excel

Avatar von Florian Eibeck
  • Excel-Dateien mit Javascript im Frontend erstellen

    Für viele Anwendungen ist der Export nach Excel ein wichtiges Feature. Zum Erstellen von Excel-Dateien mit PHP auf Serverseite gibt es Lösungen wie libxl oder PHPExcel, doch geht das auch per Javascript nur im Frontend? Ja, wie im Artikel gezeigt wird.

  • Performant Handling of Excel Files in PHP

    When you look at Excel solutions for PHP, the first thing you find is PHPExcel, digging a little bit further lets you find libXl. The prior is a pure PHP solution, the latter a native library for a couple of operating systems. There is a PHP extension that exposes this library to PHP, so you…

  • Import and export data using PHPExcel

    There’s a newer version of this article topic available (2014). Please read on at Performant handling of Excel files in PHP. A few weeks ago I had to read and write Excel files of the format BIFF8 (Excel 97), because the customer did not accept the workaround of exporting data to CSV. PEAR’s Spreadsheet_Excel_Writer combined…