-2

Iv'e seen simaliar questions but I didn't understand it. How can I deliver an captured image (bitmap) to my server via http-post in android(java)? How should the server side php look like?

Thank you,

Boaz

Boaz K
  • 493
  • 1
  • 4
  • 13

1 Answers1

0

It would look exactly as if you were accepting input from another script. The posted image will be in PHP's $_FILES array, and you can treat it as you would normally.

omniuni
  • 133
  • 7
  • yes, but the bigger question was how i make it in the client's side? – Boaz K Feb 27 '13 at 19:51
  • 2
    http://stackoverflow.com/questions/4126625/how-to-send-a-file-in-android-from-mobile-to-server-using-http – omniuni Feb 27 '13 at 19:53
  • OK, i have pasted the code in the link below to my application but how should the server side exactly look-like? – Boaz K Mar 01 '13 at 16:20