Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
What have you tried? Have you looked at POST method uploads? – Tom Feb 8 at 14:09
I'm trying to send a file from my phone to server. – user1754950 Feb 8 at 21:33
So try writing some PHP, look at the link I posted. We're here to help, not to write code for you! – Tom Feb 8 at 22:21

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.