0

有人可以解释一下这段代码吗,我正在关注一本向我推荐的非常好的书,并且我输入的代码与书中的内容完全相同。它显示代码而不是输出,我不确定出了什么问题,代码来自一本名为 php Solutions 的书

          <?php
                     // set the max upload size in bytes
                      $max = 51200;
                     if(isset($_POST['upload'])){

                // define the path to the upload folder
                $destination = 'C:\upload_test';
                 // move the file to the uplaod folder and rename it
                move_uploaded_file($_FILES['image']
                    ['tmp_name'],     $destination.$_FILES['image']['setara']);

                    }
                    ?>







    <!doctype html>
    <html  lang="en">
    <head>
    <meta charset="utf-8">
    <title>Mult</title>
    <link rel="stylesheet" type="text/css" href="css/style.css">
    </head>
    <body>





    <form action="" method="post" enctype="mutipar/form-data" id="uploadImage">
        <p>
            <label for="image">Upload image:</label>
            <input type="hidden"name="MAX_FILE_SIZE" value="<?php echo $max; ?>">

            <input type="file" name="image" id="image">
        </p>
        <p>
            <input type="submit" name="upload" id="upload" value="Upload">
        </p>
    </form>






</body>
</html>
4

1 回答 1

2

这肯定是因为您在 .html 或 .htm 扩展名文件中编写 PHP 代码尝试将代码放入 .php 扩展名文件。它将解决错误。

于 2013-05-01T08:45:14.440 回答