Skip to content

Instantly share code, notes, and snippets.

@yogasukma
Created March 3, 2014 11:06
Show Gist options
  • Select an option

  • Save yogasukma/9322848 to your computer and use it in GitHub Desktop.

Select an option

Save yogasukma/9322848 to your computer and use it in GitHub Desktop.
convert html table to excell
<?php
header("Content-Type: application/vnd.ms-excel; charset=utf-8");
header("Content-type: application/x-msexcel; charset=utf-8");
header("Content-Disposition: attachment; filename=report_user.xls");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false);
/*
* insert your table html
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment