作者finalwave (小龙)
看板PHP
标题Re: [请益] 放上网路空间就不能跑
时间Sat Nov 19 23:16:11 2005
※ 引述《finalwave (小龙)》之铭言:
: 我写了一个上传档案的程式
: 自己电脑用APPSERV没问题(两台都试过)
: 但是一放到网路上(有支援php) 按上传就是无法成功
: 请问问题可能出在哪呢
: 谢谢
附上原程式
请帮我看看哪里有问题
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=big5">
<title>新增网页1</title>
</head>
<body>
<form method="POST" enctype="multipart/form-data" action="netart1.php">
<p><input type="file" name="userfile" size="20"><input type="submit"
value="upload" name="B1"></p>
</form>
<?php
echo "Filename: ".$_FILES['userfile']['name']."<br>";
echo "Filename: ".$_FILES['userfile']['tmp_name']."<br>";
echo "Size: ".$_FILES['userfile']['size']."<br>";
echo "Type: ".$_FILES['userfile']['type']."<br>";
echo "Error: ".$_FILES['userfile']['error']."<br>";
if($_FILES['userfile']['type']=="image/bmp"||$_FILES['userfile']['type']=="image/pjpeg"||$_FILES['userfile']['type']=="image/x-png"||$_FILES['userfile']['type']=="image/gif")
{if(copy($_FILES['userfile']['tmp_name'],$_FILES['userfile']['name']))
echo "uploads successfully<br>";
else
echo "error in uploading<br>";
}
else echo error1;
?>
<p><img border="0" src="<?php echo $_FILES['userfile']['name']; ?>"
width="600" height="480"></p
</body>
</html>
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 218.166.152.205