Here in the basement, we're writing a messenger app for android. We have basically figured out the logic but for the following: - At the initial launch of the app on the phone, we need to register the user - The server API (being written in PHP) must receive the data, such as phone number and uid, sent by the phone using POST request in json format. As you know, to process the POST data in PHP, you need to know the global variable, as listed here:
$_POST['some_var'];
The questions is, how can I know this global variable to process in my PHP script?