I need to make a PHP application that supports upload photos from mobile phone.
any idea how can I achieve that ?
I need to make a PHP application that supports upload photos from mobile phone.
Share
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.
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
$_FILESand$_POSTglobals 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.