Jump to content

how to pass string using snoopy class


new_member

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.