I have an issue with PHP COM/DCOM functions that I hope someone has seen before or knows how to resolve ( I have been pounding my head on this in my spare time for a week now).
Everything in my script works great. I can create the COM object, make connections, Query data, Retreive values, Everything except for this:
$myOptions->Rows->Add();
$myoptions->Value(1,1)="MY TEXT HERE";
I getting a parse error with that due to the (1,1) part in the second line. Having (1,1) places the value in a specific row and column through propPut (row1,column1) and must be added in order for the value to be appended to a search table.
I have tried every single combination, variation and deviation that I can think of and I am in desperate need of help here. Visual Basic can do this:
myOptions.Rows.Add;
myOptions(1,1)="MY TEXT HERE";
So I know PHP can do it better, faster and more freindly. Anyone's help in this would be greatly appreciated...😕