2017-07-02 106 views
-1
<!DOCTYPE html> 
<html lang="en"> 
<head> 
    <meta charset="UTF-8"> 
    <title>New Post</title> 
</head> 
<body> 

<p> Sub-Category: <select><option id="subCtgry"></option></select></p> 
<p> Location: <select><option id="lctn"></option></select></p> 
<p> Title: <input type="text" name="ttl" size="80"></p> 
<p> Price: <input type="text" name="prc" size="10"></p> 
<p> Description: <textarea class="scrollabletextbox" name="prc" style="width:600pt;height:100pt;overflow:scroll"></textarea></p> 
<p> Email: <input type="text" name="email" size="80"></p> 
<p> Confirm Email: <input type="text" name="cEmail" size="80"></p> 
<p>I agree with terms and conditions <input type="checkbox" name="chckbx"></p> 
<form> 
Optional Fields: 
<br> 
<br> 
    Image 1 (Max 5 MB): <input type="file" name="img1" size="4MB"> 
<br> 
<br> 
    Image 2 (Max 5 MB): <input type="file" name="img2"> 
<br> 
<br> 
    Image 3 (Max 5 MB): <input type="file" name="img3"> 
<br> 
<br> 
    Image 3 (Max 5 MB): <input type="file" name="img3"> 
<br> 
<br> 
    <input type="submit" value="Submit"> 
    <input type="reset" value="Reset"> 
</form> 

</body> 
</html> 

我想寫一個PHP文件來接受來自上面新帖的用戶輸入。並且還希望在用戶確認之前向用戶展示預覽。我能怎麼做?謝謝你的幫助。PHP文件接受用戶輸入

+0

您需要顯示文件進行確認上傳,或確認可以通過用戶 –

+0

上傳第二種情況下的文件,以便使用JS中的File。 –

+0

凌亂的HTML。 form標籤應該包含所有輸入類型標籤。請求是獲得還是發佈。表單應該包含提交文件類型數據的多部分表單數據。參考:https://www.w3schools.com/php/php_file_upload.asp – Priya

回答

1

要上傳文件: 設置你的形式方法張貼和和編碼類型的表單元素enctype="multipart/form-data"

<form action="upload.php" method="post" enctype="multipart/form-data"> 

上W3Schools的如何處理一個文件上傳檢查this tutorial

要預覽所選擇的圖像:在計算器 結帳this answer

如果在嘗試上述解決方案/教程後需要幫助:讓我們知道並解釋您嘗試過的內容(相關代碼片段)以及您卡住的位置。我們很樂意爲您提供幫助!

+0

這是有效的。再次感謝。 –