In codeigniter we can pass values from one method to another and process the datas.

Example:

public function method1($id)
{
      $this->method2($id);

}

public function mehod2($id)
{
     Here we can get the value of $id

}