can we able to upload a file using HTTP GET or POST requet in HTML FORM tag.
update
what is the behaviour if i use GET in form tag.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need a POST request and set the form’s
enctypetomultipart/form-dataRe your update: You need POST to upload a file, otherwise the form will be posted but the file won’t come along.
GET is limited to a few kilobytes in maximum length, and
multipart/form-datawill work only with the POST method.