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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.