Answers for "save data into excel php"

PHP
0

php export excel

composer require phpoffice/phpspreadsheet
Posted by: Guest on August-10-2020
3

create excel file using php]

$books = [
    ['ISBN', 'title', 'author', 'publisher', 'ctry' ],
    [618260307, 'The Hobbit', 'J. R. R. Tolkien', 'Houghton Mifflin', 'USA'],
    [908606664, 'Slinky Malinki', 'Lynley Dodd', 'Mallinson Rendel', 'NZ']
];
$xlsx = SimpleXLSXGen::fromArray( $books );
$xlsx->saveAs('books.xlsx');
//  $xlsx->downloadAs('books.xlsx');
//git repo given below
Posted by: Guest on March-23-2022

Code answers related to "save data into excel php"

Browse Popular Code Answers by Language