묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
모듈에서 파일을 어떻게 업로드 시키나요???
2010.01.08 20:30
<?php /** * @class munjeController * @brief munje controller class **/ class munjeController extends munje { function init() { } function procMunjeItemInsert() { if(!$this->grant->write_munje) return new Object(-1, 'msg_not_permitted'); $obj->module_srl = $this->module_srl; $obj->content = Context::get('content'); $obj->munje_total = Context::get('munje_total'); $obj->munje_gesu = Context::get('munje_gesu'); $obj->munje_dap = Context::get('munje_dap'); if(!$obj->content) return new Object(-1, 'msg_content_is_null'); $logged_info = Context::get('logged_info'); if($logged_info){ $obj->member_srl = $logged_info->member_srl; $obj->nick_name = $logged_info->nick_name; }else{ $obj->member_srl = 0; $obj->nick_name = Context::get('nick_name'); $obj->password = Context::get('password'); if(!$obj->nick_name || !$obj->password) return new Object(-1, 'msg_nickname_is_null'); } $obj->munje_srl = getNextSequence(); $obj->list_order = $obj->munje_srl * -1; $output = executeQuery('+ '+ 'munje.insertMunjeItem',$obj); if(!$output->toBool()) return $output; $this->add('munje_srl', $obj->munje_srl); $this->setMessage('success_saved'); } } ?>
문제은행 모듈을 만들고 있습니다. 초보라서 메모장을 뜯어 고쳐가며 만들고 있는데...이제 글이 올라 가는 것까지는 했는데...파일을 어떻게 올려야 할까요???
코드를 여기 저기 보고있는데 참고 할 만한 소스 없을까요????
$obj->content = Context::get('content');
$obj->munje_total = Context::get('munje_total');
$obj->munje_gesu = Context::get('munje_gesu');
$obj->munje_dap = Context::get('munje_dap');
문제 타이틀
문제토탈
문제답개수
문제답
그리고 파일을 올릴려고 합니다. 도움이 될만한 소스 없을까요???
파일을 어떻게 올려야 하지요????
참고로 그림 파일을 올리려고 합니다. 구현 방식은....
http://www.test4u.kr/test4u/head.php?idx=10
이렇게 구현하려고 합니다. 파일을 올리려고 하는데 방법좀 가르쳐 주세요...