<html>
<head><title>上傳單一檔案</title><meta http-equiv="Content-Type" content="text/html; charset=big5"><style type="text/css">
<!--
body {
background-color: #0FF;
}
-->
</style></head>
<body>
<form action="file.php" method="post"
enctype="multipart/form-data">
選擇上傳檔案: <input type="file" name="file"/><hr/>
<input type="submit" value="上傳檔案"/>
</form>
<p>
<?php
if (isset($_FILES["file"])) {
echo "上傳檔案資訊: <hr/>";
echo "檔案名稱: ".$_FILES["file"]["name"]."<br/>";
echo "暫存檔名: ".$_FILES["file"]["tmp_name"]."<br/>";
echo "檔案尺寸: ".$_FILES["file"]["size"]."<br/>";
echo "檔案種類: ".$_FILES["file"]["type"]."<hr/>";
// 儲存上傳的檔案
if ( copy($_FILES["file"]["tmp_name"],
$_FILES["file"]["name"])) {
echo "檔案上傳成功<br/>";
unlink($_FILES["file"]["tmp_name"]);
}
else echo "檔案上傳失敗<br/>";
}
?>
</p>
<p><a href="../index.htm"><img src="../image/little/go_home074.gif" alt="" width="42" height="33" border="0" /></a></p>
</body>
</html>
文章標籤
全站熱搜
留言列表