how to read response of an ajax object

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
venkatesh.svs
Forum Newbie
Posts: 12
Joined: Wed Jan 06, 2010 1:30 am

how to read response of an ajax object

Post by venkatesh.svs »

how to read the response of an ajax object

i am getting the response of an object as a string value.
i want to get those values individually by separating with the space
and then i want to check perticular checkbox based on that responce value
User avatar
flying_circus
Forum Regular
Posts: 732
Joined: Wed Mar 05, 2008 10:23 pm
Location: Sunriver, OR

Re: how to read response of an ajax object

Post by flying_circus »

venkatesh.svs wrote:how to read the response of an ajax object

i am getting the response of an object as a string value.
i want to get those values individually by separating with the space
and then i want to check perticular checkbox based on that responce value
Check out php's explode() method. If your fields are space delimited, then it should be pretty straight forward.
Post Reply