0
How to get user data with PHP???
4 ответов
+ 1
+ 2
What user data exactly?
+ 2
If you are trying to receive a data on your php, you can use $_POST and assign it to a variable.
$var = $_POST["var_name"];
Now, if you are trying to pass a data to a non-web application. In my opinion, the easiest way for me is by using JSON.
json_encode();
+ 1
you mean ip address ?