Example #1
0
	function CustomersXLSExport () {
		parent::CustomersExport();
		$this->content_type = "application/vnd.ms-excel";
		$this->extension = "xls";
		$this->c = 0; $this->r = 0;
		$this->output();
	}
Example #2
0
 public function __construct()
 {
     parent::__construct();
     $this->content_type = "application/vnd.ms-excel";
     $this->extension = "xls";
     $this->c = 0;
     $this->r = 0;
     $this->output();
 }
Example #3
0
 public function __construct()
 {
     parent::__construct();
     $this->content_type = "text/csv";
     $this->extension = "csv";
     $this->output();
 }