文件上传中发现未定义的索引错误

时间:2013-09-07 08:17:35

标签: php

我正在使用此代码上传任何文件,但它将错误视为未定义的索引文件 和文件大小太大,如模具.........

请帮助.....

    <?php
if(isset($_POST['up_load']))
{
if(!file_exists('upload'))
{
mkdir('upload');
}

$userfile=$_FILES['file']['tmp_name'];
$targetfile='upload'."/".basename($_FILES['file']['name']);

$filesize=$_FILES['file']['size'];


if($filesize<2000000000)
{
$i=move_uploaded_file($userfile,$targetfile) or die("File was tooo big!");

if($i)
{
echo "file uploaded!";
}
}

}
?>


<html>
<body>
<form method="post" action="file_upload.php" enctype="multipart/form_data">
<input type="file" name="file" />
<input type="submit" name="up_load" value="upload!"/>
</form>
</body>
</html>

是我的php ini文件的becoz。 或者我错过了一些帮助。

1 个答案:

答案 0 :(得分:0)

check php configuraion

file_uploads    "1"
upload_max_filesize     "2M"
post_max_size   "8M"
max_file_uploads    20