Currently I'm creating an app using IntelXDK to upload image from devices to my server. The problem currently I'm encountering is, how to code my backend so that it can receive the upload file from mobile device?
In PHP, I only know that the file upload requires:
- <input type="file" name="file" />
- then use $FILES["file"] to save it into storage
And is almost similar in .Net as well. But I'm still couldn't think of how to receive the file once it is uploaded via mobile. Would be great if someone share or advise the missing part (.Net and PHP).