class Controller_Test extends Controller
public function action_index()
$data['test'] = Input::post('test');
$this->response->body = View::factory('test', $data);
Then using
<form action="" method="post"> <p><?php echo $test; ?></p> <textarea name="test"></textarea> <input type="submit" /> </form>I submit
"coconuts"and it returns
\"coconuts\".
It looks like you're new here. If you want to get involved, click one of these buttons!