15 lines
275 B
PHP
Executable File
15 lines
275 B
PHP
Executable File
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
require_once( APPPATH.'/third_party/PHPExcel/Classes/PHPExcel.php');
|
|
|
|
class Excel extends PHPExcel {
|
|
|
|
var $debug = false;
|
|
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
}
|
|
|