我正在使用此代码上传任何文件,但由于未定义的索引文件和文件大小太大而导致错误.........
请帮忙.....
<?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 文件。或者我错过了一些帮助。