画像サイトのコントロール パネルを作成しています。次のようなカテゴリと呼ばれるコントローラーがあります。
class category extends ci_controller
{
function index(){}// the default and when it called it returns all categories
function edit(){}
function delete(){}
function get_posts($id)//to get all the posts associated with submitted category name
{
}
}
私が必要とするのはhttp://mysite/category/category_name
、get_posts() メソッドを呼び出さなくてもすべての投稿を取得するときに、URL から呼び出さなければならないことです。
.haccess ファイルやルートを使用せずに実行したい。
CodeIgniter でその場でメソッドを作成する方法はありますか?