I have just started research of how to do php scripts for mobile devices and I cant find any way how to receive data.
It will receive some kind of easy json but I am not sure how to tell php to receive it. Is it same as in web using $POST_[]? or some kind of require()?
Its the same as a desktop – Ajax is no different on a mobile device. Just think of it as a browser on a smaller screen 🙂
You’ll want $_POST, $_REQUEST or file_get_contents(“php://input”);