Reputation: 5478
There are several web applications which allow you to send photos from your mobile phone and post them to web site/application. How do these work and what sort of technologies would one use to implement such a feature? Is it an MMS server or does one need to get into socket programming? For example, some applications provide you with an email address to email your photos to via mobile phone. I'm curious to know how these things work. I can somewhat figure out on my own how they work, but I would like to know this feature is normally implemented.
Thanks
Upvotes: 0
Views: 1046
Reputation: 8981
many popular phones including the iPhone unfortunately do not allow from the browser due to sandboxing, so you would either have to use a native application or one of the other methods
Upvotes: 0
Reputation: 30160
I think you have three options to support this:
<input type="file" />
, so this may not actually be an option at all.You can use whatever server-side technology you prefer for processing each of these.
Upvotes: 6