php文件上傳代碼 這是一款很實例的 php文件上傳代碼 程序,拿著就能用的。
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title> php教程文件上傳代碼</title>
</head><body>
<form method="post" enctype="multipart/form-data" action ="uploads.php">
<input type = "file" name="uploadedfile" size="30">
<input type = "hidden" name = "max_file_size" value="100000">
<input type = "submit" value = "上傳文件">
</form></body>
</html>
<?php
if ($uploadedfile<>"none") {
if (!copy($uploadedfile, "$uploadedfile_name")) {
echo "<font face='arial' size='2'> $name 文件上傳失敗 ,<br>";
echo "也可能是文件太大<br>";
echo "請使用 back 按鍵再試一次";
} else {
echo "<font face='arial' size='2'>文件上傳成功 !<br>";
echo "文件類型:$uploadedfile_type <br>";
echo "文件大小:$uploadedfile_size <br>";
echo "文件名稱:$uploadedfile_name <br>";
echo "文件說明:$description <br>";
}
}
/*
這是一款很實例的 php文件上傳代碼 程序,拿著就能用的。
*/
?>