ファイルアップロード PHPコード

ファイルアップロード PHPコード

upload.html
<html>
<head>
<meta charset=”utf-8″>
<title>upload.html</title>
</head>
<body>
<form method=”post” enctype=”multipart/form-data” action=”upload.php”>
<input type=”file” name=”upfile”>
<input type=”submit” value=”Upload”>
</form>
<br>
</body>
</html>

upload.php
<html>
<head>
<meta charset=”utf-8″>
<title>upload.php</title>
</head>
<body>
<?php
$dir= “./upload/”;
$file= $_FILES[‘upfile’][‘name’];
if(move_uploaded_file($_FILES[‘upfile’][‘tmp_name’], $dir.$file)==TRUE){
print(“Uploaded (成功)”.”<br>”);
print(“$file”);
}else{
print(“Failed (失敗)”.”<br>”);
print($_FILES[‘upfile’][‘error’]);
}
?>
<br>
</body>
</html>