I have integrated rest controller with codeigniter. following is the function for get method
public function cource_topics_get($res=1) {
$this->response(array('status' => 1, 'succ_message' => $res));
}
I want to get the data from following link in the above function http://localhost/login/index.php/admin/cource_topics?key=value
Help me how to do this