-1
我想上傳文件到我的網站,但由於一些奇怪的原因,它不工作。存在=真正觸發,所以這意味着它應該是正確的?它給了我$ error = true ;.下面是我的代碼:有問題與PHP文件上傳
HTML:
<input size="30" enctype="multipart/form-data" name="profile_icon" id="register-profile_icon" class="elgg-input-file" type="file">
PHP:
$profile_icon = $_FILES["profile_icon"];
if($profile_icon){
$exists=true;
}
$error = false;
if(empty($profile_icon["name"])){
register_error(elgg_echo("profile_manager:register_pre_check:missing", array("profile_icon")));
$error = true;
}
'ENCTYPE = 「多部分/格式數據」''中屬於