12 lines
208 B
PHP
12 lines
208 B
PHP
<?php namespace Project\Controllers;
|
|
use URI,DB,Cookie,URL,Method;
|
|
|
|
class category extends Controller{
|
|
function main(){
|
|
$id = explode('-',URI::get('category'));
|
|
$id = $id['0'];
|
|
view::id($id);
|
|
}
|
|
|
|
|
|
} |