12 lines
226 B
PHP
12 lines
226 B
PHP
<?php
|
|
class Broadcast extends MY_Controller
|
|
{
|
|
function __construct() {
|
|
parent::__construct();
|
|
$this->db = $this->load->database("onedev", true);
|
|
}
|
|
function msg($prm) {
|
|
$this->broadcast($prm);
|
|
}
|
|
}
|