Cloudlog/application/controllers/welcome.php

18 行
371 B
PHP

2011-04-25 23:24:01 +08:00
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Welcome extends CI_Controller {
2012-11-15 00:01:51 +08:00
public function index()
{
$this->load->library('hamio');
$callbook = $this->hamio->callsign('m3php');
print_r($callbook);
2012-11-14 08:56:54 +08:00
2012-11-15 00:01:51 +08:00
}
2011-04-25 23:24:01 +08:00
}
/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */