Create excel file in PHP without using any libraries

Опубликовано: 07 Октябрь 2024
на канале: Extreme Programmer
872
12

In this video I have shown you how you can create excel file in PHP without using any libraries. Just add 2 lines of code mentioned below in your php page. The page will create an excel file and download it.

header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=myexcel.com.xls");

This is video shows excel spreadsheet creation using static data. I am creating Part-2 where you can import Dynamic data in the form of Excel

#excelinphp #phpexcel #phpprogram