i want to make my server side in php. after writing the code in php can i directly use json to parse it of or something other required on the server side with php.
can you give me some example of it, how to do this on server side if i want to use json of my client side.
You can’t use JSON to parse things, JSON is the data format.
You can use a JSON parser and a JSON serializer at both ends (i.e. in client side JS and server side PHP).
http://json.org/ has links to parsers and serializers in various languages near the bottom, they have documentation which usually includes examples.