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?? Link to comment https://forums.phpfreaks.com/topic/280612-how-to-pass-string-using-snoopy-class/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.