Send the contents of Android ArrayList to PHP

前端 未结 2 828
夕颜
夕颜 2021-01-24 02:34

I am working as a PHP developer (intermediate level) and do practice some android stuff at home.

I have created and array list which will fetch into an sqlite db inside

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-24 02:40

    You can make use of JSON or XML for sending data from android to php server. On the PHP side, all you need is the built-in json_decode, which will deserialize your json and return an object or an associative array.

提交回复
热议问题