How can I use $_POST with multipart/form-data for file uploads?
1003 Aug 2024
When handling file uploads with $_POST
, you need to set the form’s enctype
attribute to multipart/form-data
. This allows the browser to send file data in a format that can be processed by PHP:
<form method="post" action="upload.php" enctype="multipart/form-data">
<label for="file">Choose file:</label>
<input type="file" id="file" name="file">
<input type="submit" value="Upload">
</form>
In upload.php
, process the uploaded file with the $_FILES
array. This array contains file details like $_FILES["file"]["tmp_name"]
for the temporary file path and $_FILES["file"]["name"]
for the original file name.
0 likes
Top related questions
Related queries
Latest questions
कौन सा फोन बेहतर है, वीवो या सैमसंग 2024?
26 Nov 2024 0
सेक्स करने के बाद कैसा महसूस होता है
26 Nov 2024 4
10 love 😘 शायरी
25 Nov 2024 0
Jio Bharat 5G खरीदे अब केवल 999 में, झक्कास फीचर्स के साथ मिलेगा 6 महीने का रिचार्ज फ्री
25 Nov 2024 5
यह किस देश का झंडा है कोई बता सकता है
25 Nov 2024 1
किस विटामिन की कमी से बाल झड़ने लगते हैं?
25 Nov 2024 4
सेक्स करना कैसा लगता है
25 Nov 2024 6
आपने मुंह में लन्ड लिया है कभी?
25 Nov 2024 8
सबसे पहले आपको किसने चोदा?
25 Nov 2024 10
किस किस ने भाभी को चोदा है?
25 Nov 2024 43