Well, i have the following code :
<? $A=0; ?>
<? $MyCom->Modify(&$A); ?>
After the call to Modify, $A is always to 0 (the function set him to 1, but php variable is not modified).
WHY ? I don't understand...
My com is a c++ object.
i try Modify([in, out] a), Modify([out] a) nothing work...
Please help me !!!