Advertisement
kura2yamato

excel 002

May 31st, 2021
1,032
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.56 KB | None | 0 0
  1. <?php
  2. $file='tes.xls';
  3.  
  4.  
  5. header('Content-disposition: attachment; filename='.$file);
  6. header('Content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
  7. header('Content-Length: ' . filesize($file));
  8. header('Content-Transfer-Encoding: binary');
  9. header('Cache-Control: must-revalidate');
  10. header('Pragma: public');
  11. ?>
  12. <!--
  13. /**
  14. ##INFO##
  15. {"title":"excel dari HTML ","detail":"membuat excel menggunakan HTML "}
  16. ##INFO##
  17. **/
  18. -->
  19. <?php  
  20. ob_clean();
  21. flush();
  22. ob_start();
  23. include('excel001/001.php');
  24. $s2 = ob_get_contents();
  25. echo $s2;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement