-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文件接受用戶輸入
您需要顯示文件進行確認上傳,或確認可以通過用戶 –
上傳第二種情況下的文件,以便使用JS中的File。 –
凌亂的HTML。 form標籤應該包含所有輸入類型標籤。請求是獲得還是發佈。表單應該包含提交文件類型數據的多部分表單數據。參考:https://www.w3schools.com/php/php_file_upload.asp – Priya