Re: [請益] 放上網路空間就不能跑

看板PHP作者 (小龍)時間19年前 (2005/11/19 23:15), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串2/4 (看更多)
※ 引述《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
文章代碼(AID): #13Vq5tLh (PHP)
文章代碼(AID): #13Vq5tLh (PHP)