14 lines
268 B
PHP
14 lines
268 B
PHP
<?php
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class Appstart extends Web_Controller {
|
|
|
|
public function index() {
|
|
$data = array();
|
|
// $this->renderExternalPage('welcome_message', $data);
|
|
echo "SERVER END";
|
|
}
|
|
|
|
}
|