0
我試圖創建一個頁面,使用他們的api將圖像上傳到imagezilla,但沒有運氣。下面是我使用的代碼,但沒有明顯的原因imagezilla api失敗
<html>
<body>
<form action="http://imagezilla.net/api.php" method="post">
<input type="file" name="file" accept="image/x-png, image/gif, image/jpeg" />
<input type="hidden" name="apikey" value="..." />
<input type="hidden" name="username" value="..." />
<input type="hidden" name="passwordmd5" value="..." />
<input type="hidden" name="testmode" value="1" />
<input type="submit" />
</form>
</body>
</html>
所有我不斷收到的回報apikey,用戶名和密碼是沒有上傳的文件,即使我把測試模式出它仍然沒有它。
該網站是不是很有幫助http://imagezilla.net/api-docs.php
任何幫助將是偉大的。傑米
嘗試設置正確的'enctype'的形式。 – BenM
謝謝你BenM的工作原理就像一種享受 – user170324