开发者

I'm building a javascript app, I need a lightweight php script to interact with a database and javascript using json

开发者 https://www.devze.com 2022-12-28 12:13 出处:网络
My app is a very complex game that uses json objects to store its execution state (aka sa开发者_运维知识库ve games). I\'m looking for a nice database script that can talk json and interact with javasc

My app is a very complex game that uses json objects to store its execution state (aka sa开发者_运维知识库ve games). I'm looking for a nice database script that can talk json and interact with javascript via ajax.


you mean something like http://www.persvr.org/ ?


I'm not sure how familiar you are with php, but you can send JSON objects to a php with ajax and then use json_decode() to turn the JSON object into an associative array, then when you want to pass a JSON object back, you have your use json_encode() on your associative array and it will turn it into a JSON object that gets returned to javascript. As far as having a database script ready made, you'll have to be more specific with what you're looking for.

0

精彩评论

暂无评论...
验证码 换一张
取 消