Why We Use Enctype Multipart Form Data In PHP?
Why We Use Enctype Multipart Form Data In PHP? enctype=’multipart/form-data is an encoding type that allows files to be sent through a POST. Quite simply, without this encoding the files cannot be sent through POST. If you want to allow a user to upload a file via a form, you must use this enctype. What