If I use post method for all with one submit click I can upload files and other variables. I want to try using put method and also want to send post variables with the file in one form and one submit click.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Yes, that's the normal operating method for forms. There's nothing special about a file upload form, except having to specify the The only server-side difference in PHP is that file upload data is in the $_FILES superglobal. Other fields will be in $_POST as usual. |
|||
|
|
PUTorPOST. You can't use both methods at the same time. So the question is, why would you want it anyway? – mario Nov 7 '11 at 20:15