display_dhtml_editor 함수 관련 질문
- aswdaniel
- 0
- 1,723
- 글주소
- 07-23
안녕하세요.
제가 display_dhtml_editor 함수를 쓰는 과정에 문제가 생기는 데요 일단
<?php echo display_dhtml_editor('info', $info,
$classname = 'form-control input-aud-caution', $is_dhtml_editor = true,
$editor_type = 'smarteditor');?>
이렇게 view에는 코딩해놨고 controller 에는
$newinfo = $this->input->post('info', null, '');
이렇게 해놨는데 smarteditor에서 글을 작성또는 수정시에 수정된글이 pass되지 않고 예전 $info 값이 pass됩니다. ciboard에서 보면 $info 밸류 바로 넣지 않고 set_value(element....) 이렇게 하셨던데, 그냥 $info 로 쓰면 안되는 건가요?
답변 부탁 드립니다.