10 lines
242 B
PHP
Executable File
10 lines
242 B
PHP
Executable File
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
require_once APPPATH."/third_party/PHPExcel.php";
|
|
|
|
class Excel extends PHPExcel {
|
|
public function __construct() {
|
|
parent::__construct();
|
|
}
|
|
}
|