How to write a php script which can receive and store the file send via my app using HTTP-post. I want to send this file from my phone to a server and that server should have PHP script running. Below is the code which shows how I'm sending the file:
HttpClient httpclient = new DefaultHttpClient();
httpclient.getParams().setParameter(CoreProtocolPNames.PROTOCOL_VERSION, HttpVersion.HTTP_1_1);
httpclient.getParams().setParameter(CoreConnectionPNames.CONNECTION_TIMEOUT, 60 * 1000);
HttpPost httppost = new HttpPost(serverUrl);
MultipartEntity multipartEntity = new MultipartEntity();
FileBody fileBody = new FileBody(file);
if (fileBody != null)
{
multipartEntity.addPart("uploadedfile", fileBody);
}
if (paramsMap != null)
{
for (String key : paramsMap.keySet())
{
String value = paramsMap.get(key);
multipartEntity.addPart(key, new StringBody(value));
}
}
httppost.setEntity(multipartEntity);
HttpResponse httpResponse = httpclient.execute(httppost);
This code is there on my app in the mobile. But don't know how to receive this file using PHP. Need your help, please.