14 lines
179 B
PHP
14 lines
179 B
PHP
<?php
|
|
class programset extends control
|
|
{
|
|
public function index()
|
|
{
|
|
$this->display();
|
|
}
|
|
|
|
public function browse()
|
|
{
|
|
$this->display();
|
|
}
|
|
}
|