AW: [PHP] Java-Object

2002-04-29 Thread Bedilu Habte
Hallo Henning, thanks for your suggestion. The result... print_r($result); resulted in: Objectjava Object ( [0] = 2 ) var_dump($result); had given me: object(java)(1) { [0]= int(2) } Can you make something out of this. -Ursprungliche Nachricht- Von: Henning

Re: AW: [PHP] Java-Object

2002-04-29 Thread Henning
Bedilu Habte wrote: print_r($result); resulted in: Objectjava Object ( [0] = 2 ) var_dump($result); had given me: object(java)(1) { [0]= int(2) } it means that you have an object with a property field of type integer and a value of 2. possibly nmot what you want