Jump to content

tsdesai

New Members
  • Posts

    5
  • Joined

  • Last visited

tsdesai's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi All, I am looking for some suggestions in terms of choosing the right library for decrypting text using RSA. I have tried to decrypt data using openssl decrypt and gives error message as openssl_public_decrypt(): key parameter is not a valid public key Not sure what i am doing wrong. I am new to this so please excuse me if i am being thick. Thanks in advance. T
  2. Brilliant !!!! Thank you so much. Everything seems to be happy now. R, T
  3. Hi, I have just done print_r($names) and it returns back below. $names= $names->GetResult; print_r($names); and it returns below. stdClass Object ( [Reult] => Array ( [0] => stdClass Object ( [iD] => 1 [testid2] => 2 [TypeID] => 4 [Title] => test [Description] => test [Date] => 2016-01-07 ) [1] => stdClass Object ( [iD] => 2 [testid2] => 3 [TypeID] => 5 [Title] => test22 [Description] => test222 [Date] => 2016-01-07) Thanks
  4. The thing is i am getting the result from an external web service, I am just trying to figure out how i can best consume it. Thanks,
  5. Hi, I am trying to loop through using php inorder to get the elements $names= $names>GetResult; foreach ($names as &$name) { echo $name->ID; } The above code gives me an error Notice: Trying to get property of non-object But if i try to access as below with the index number, it works. foreach ($names as &$name) { echo $name[0]->ID; } The problem with the above method is it will just give one, but i want to loop through and get all the contents. I know its something really basic that i ma missing but would appreciate your help. Many Thanks, T
×
×
  • 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.