$ _FILES不工作,没有错误

时间:2013-11-04 23:54:43

标签: php linux apache html-form-post

这是我的html页面,其中包含表单:

<html>
    <head>
        <meta charset="UTF-8"/>
    </head>
    <body style="text-align:center;" >
        <form id="upload" action="file_upload.php" method="post" enctype="multipart/form-data">
            <input type="hidden" name="MAX_FILE_SIZE" value="12412412" /> 
            <label for="file">Dosya Adı:</label>
            <input type="file" mame="file" id="file"/>
            <br/>
            <input type="submit" name="submit" value="Yükle"/>
        </form>
    </body>
</html>

这是我的file_upload.php文件:

<pre>
    <?php print_r($_FILES); ?>
</pre>

<?php
    if( $_FILES["file"]["error"] > 0 ){
        echo 'Error : ' . $_FILES["file"]["error"]. '<br/>';
    }
    else {
        echo "File : " . $_FILES["file"]["name"] . "<br/>";
        echo 'File Type : ' . $_FILES["file"]["type"] . '<br/>';
        echo 'File temp adr: : ' . $_FILES["file"]["tmp_name"] . '<br/>';
    }
?>

我的php信息记录:

file uploads : on
max file uploads : 20
upload max file size : 32M
post max size : 32M

并将我的tmp文件夹权限设置为777.我正在使用bitnami mamp stack 5.4.9上的mac os 10.9

file_upload.php给了我这个:

Array
(
)

File :
File Type :
File temp adr: : 

我在html表单中尝试使用和不使用<input type="hidden" name="MAX_FILE_SIZE" value="12412412" />。我在互联网上搜索evry网站,我找不到问题。

1 个答案:

答案 0 :(得分:4)

你的属性错误:

<input type="file" mame="file" id="file"/>

应为name

<input type="file" name="file" id="file"/>

这就是$_FILES为空的原因;将属性mame固定到name之后,它会起作用。