有没有人能解释一下这段代码,我正在阅读一本非常好的书,这本书是推荐给我的,我输入的代码和书中的一模一样。它显示的是代码而不是out,我不确定出了什么问题,代码来自一本名为php解决方案的书。
<?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>
发布于 2013-05-01 08:45:14
这肯定是因为您是在.html或.htm扩展文件中编写PHP代码,尝试将代码与.php扩展文件放在一起。它将解决错误。
https://stackoverflow.com/questions/16315182
复制