1
我想創建文件上傳,其中包含標題和上傳文件摘要的一些字段。我也看過this的問題,但我完全不理解它。CodeIgniter - 結合表單驗證和文件上傳
function someform()
{
// some variables for fields
($this->form_validation->run() == FALSE)
{
}
else
{
// how to check if the file was uploaded?
}
}
哪些功能我要在視圖中使用 - form_open(),form_open_multipart()或兩者兼而有之? – user1257255 2012-04-29 14:15:41
你應該使用'form_open_multipart'。 – 2012-04-29 14:45:02