Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6334921
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T18:45:07+00:00 2026-05-24T18:45:07+00:00

I want to send data from my Android app to my server. On the

  • 0

I want to send data from my Android app to my server.
On the client-side, meaning the application,I can create the JSON object and send it to the server.
The problem is, I don’t know how to ‘handle’ it on the server side.All I want my server to do is to receive the JSON, parse it, and show it to me.That’s it.

I know it’s pretty vague question, but I don’t really know where to start here, and would love if anyone could show me a complete tutorial.

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T18:45:08+00:00Added an answer on May 24, 2026 at 6:45 pm

    Use PHP and json_decode()
    http://php.net/manual/en/function.json-decode.php

    Here a quick example how to handle the data:

            // get json
            $input = json_decode($_GET["json"]);
    
            // get values
            $firstname = $input->firstName;
            $surename = $input->lastName;
            $age = intval($input->age);
    
            // check values
            if (isset($firstname) && !empty($firstname) && 
                isset($surename) && !empty($surename) &&
                isset($age) && is_numeric($age))
            {
                // do something
                echo "Hello ".htmlspecialchars($firstname)." ".htmlspecialchars($surename)."!<br>";
                echo "You are $age years old! Wow.";
            }
            else
            {
                echo "Some values are missing or incorrect";
            }
    

    I used the GET parameter in this example. If you have larger data, use POST instead of GET.

    Example:
    URL: http://localhost/test/index.php?json={ “firstName” : “John”,”lastName” : “Doe”,”age” : 23 }
    Output: Hello John Doe!
    You are 23 years old! Wow.

    But: Make sure you encode the JSON data at your application. In my example the browser does it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I send data from my PHP server side App to Android Client
I want to send data to server from client(Android), below is my format http://101.34.45.45/rawData?data={userId:guest1,timestamp:2010-07-01
i want to send data from android application to local server (PHP) but it
i want to send data from android application to server (.NET) but it doesn't
I want to send image and text data from Android phone to a Server.
I want to send data in json format to a servlet from my android
I want to be a able to securely send data from my Android App
I am trying to send data from android to Django app. I want to
I want to send complex data from my android to a remote server via
How can i send a data from Server to android directly without waiting for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.