Image Upload To Server

Hi Everyone,

  We are tried to Image upload to server via choose or browse to particular image from android device.But can’t, so anybody familiar to image upload in  server ,Please help us.Thanks.(For ex:To image upload in whatsapp,Facebook).

And also we tried below this code

local function onComplete( event )

local photo = event.target

if photo then
print( "photo w,h = " … photo.width … “,” … photo.height )
end
end

local button = display.newRect( 120, 240, 80, 70 )

local function pickPhoto( event )

media.selectPhoto(
{
mediaSource = media.SavedPhotosAlbum,
listener = onComplete,
origin = button.contentBounds,
permittedArrowDirections = { “right” },
destination = { baseDir=system.TemporaryDirectory, filename=“image.jpg”, type=“image” }
})
end

button:addEventListener( “tap”, pickPhoto )