묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
파일 업로드 문제
2014.05.14 22:05
xe 입문자인데 파일 업로드를 구현하려고 하는데
파일은 업로드 되는데 모듈의 controller에서
파일 명을 받아서 db로 입력시키려고 하는데
해당 데이터가 입력이 안되서
도움을 받고자 이렇게 올립니다.
db 에서 보면 아무런 값이 안들어 가네요
----------------------------------------------html 파일----------------------------------------------
<form action="upload.php" enctype="multipart/form-data" method="post" target="_blank">
<input type="hidden" name="MAX_FILE_SIZE" value="300000000" />
DataSheet<input name="datasheet" type="file" class="datasheet" />
<button type="submit">파일올리기</button>
</form>
----------------------------------------------controller 파일----------------------------------------------
fuction procinsert()
{
$obj->datasheet = Context::get('datasheet'); // 안됨
$obj->datasheet = $_FILES['datasheet']['name'] // 안됨
}
그냥 XE의 파일 모듈을 호출하는게 편하시지 않을까 싶습니다.