new_member Posted July 29, 2013 Share Posted July 29, 2013 Hi, I am using snoopy class to pass the json encoded to site. However if i pass the values using url as: $values= array( 'val' => 'val1', 'val_arr' => "val1", "val2") ); $url = 'path to webservice?values='.json_encode($values); it gives me correct output by using $_GET as in format {"val":"val1", "val_arr":["val1", "val2"]} however by using post method of snoopy class $snoopy = new Snoopy(); $snoopy->submit($url,json_encode($data); on receivng end of webservice it gives output as: Array[0]=>({"val":"val1", "val_arr":["val1", "val2"]}) How can i post the data in json encoded string format using snoopy?? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.