Re: [PHP-DB] VAR_DUMP INTO PHP VARIABLES

2014-06-19 Thread Oriole Computing
Sorry team, i guess am in the wrong mailing list. The good news is that it has now worked thanks to Toby's solution.. the error was my typing problem ... Thanx Tobby!!! Warm Regards *SUPPORT TEAMORIOLE COMPUTING* *1938 B1 MUNGWI ROAD* *LUSAKAZAMBIA* *Skype:* oriolecomputing | *Url:* oriolec

Re: [PHP-DB] VAR_DUMP INTO PHP VARIABLES

2014-06-19 Thread Oriole Computing
Now it says PHP Notice: Undefined index: responsecode Warm Regards *SUPPORT TEAMORIOLE COMPUTING* *1938 B1 MUNGWI ROAD* *LUSAKAZAMBIA* *Skype:* oriolecomputing | *Url:* oriolecomputing.blogspot.com On Thu, Jun 19, 2014 at 4:09 PM, Toby Hart Dyke wr

Re: [PHP-DB] VAR_DUMP INTO PHP VARIABLES

2014-06-19 Thread Aziz Saleh
On Thu, Jun 19, 2014 at 10:09 AM, Toby Hart Dyke wrote: > > > My error! This: > > > $responseCode = $result[return]['responsecode']; > > should have been > > > $responseCode = $result['return']['responsecode']; > > > The other responses have been rather more elegant, though I think my > solution

Re: [PHP-DB] VAR_DUMP INTO PHP VARIABLES

2014-06-19 Thread Toby Hart Dyke
My error! This: $responseCode = $result[return]['responsecode']; should have been $responseCode = $result['return']['responsecode']; The other responses have been rather more elegant, though I think my solution is a little more readable - i.e., I had to think about what was happening for

Re: [PHP-DB] VAR_DUMP INTO PHP VARIABLES

2014-06-19 Thread Oriole Computing
Hi Toby, my response is in variable $result so i run the code as below $responseCode = $result[return]['responsecode']; but getting this error: PHP Parse error: syntax error, unexpected T_RETURN, expecting '] Warm Regards *SUPPORT TEAMORIOLE COMPUTING* *1938 B1 MUNGWI ROAD* *LUSAKAZAMBIA*

Re: [PHP-DB] VAR_DUMP INTO PHP VARIABLES

2014-06-19 Thread Pritoj Singh
foreach($arr['return'] as $key=>$val){ $$key=$val; } On Thu, Jun 19, 2014 at 3:48 PM, Toby Hart Dyke wrote: > > If you have the response in a variable, $response: > > $responseCode = $response[return]['responsecode']; > $responseMessage = $response[return]['responseMessage']; > $transactionID =

Re: [PHP-DB] VAR_DUMP INTO PHP VARIABLES

2014-06-19 Thread Toby Hart Dyke
If you have the response in a variable, $response: $responseCode = $response[return]['responsecode']; $responseMessage = $response[return]['responseMessage']; $transactionID = $response[return]['transactionID']; This isn't really the right list to ask this question - nothing to do with databas

Re: [PHP-DB] VAR_DUMP INTO PHP VARIABLES

2014-06-18 Thread Karl DeSaulniers
Sent from losPhone > On Jun 19, 2014, at 12:40 AM, Oriole Computing > wrote: > > dear List, > > we have the following var_dump output from a soap response > > array(1) { > ["return"]=> > array(3) { >["responseCode"]=> >string(1) "3" >["responseMessage"]=> >string(39) "Dupl

[PHP-DB] VAR_DUMP INTO PHP VARIABLES

2014-06-18 Thread Oriole Computing
dear List, we have the following var_dump output from a soap response array(1) { ["return"]=> array(3) { ["responseCode"]=> string(1) "3" ["responseMessage"]=> string(39) "Duplicate RequestID, Transaction failed" ["transactionID"]=> string(21) "104454061823201453721"