tags:

views:

275

answers:

1

I need to make a PHP application that supports upload photos from mobile phone. any idea how can I achieve that ?

+7  A: 

As far as I know, most modern mobile phones are using pretty well done browsers. So I would find out with one of those phones if a standard file upload form works.

If it doesn't, check the $_FILES and $_POST globals to see how they differ from the regular version.

I even found a tutorial on uploading files from a mobile phone. And it has PHP examples that look like regular file upload examples.

Ólafur Waage