Thanks for all to all.
Thomas
"Thomas" <[EMAIL PROTECTED]> schrieb in im Newsbeitrag:
98omg2$2n4$[EMAIL PROTECTED]
> Hi all again,
>
> i' am a very bloody greenhorne with php and maybe i have many questions.
> Heres one another:
>
> Who can exlpain to use com in php.
> How can i execute
Visit http://php.weblogs.com/com_php for more info on COM with PHP.
john
"Thomas" <[EMAIL PROTECTED]> wrote in message
98omg2$2n4$[EMAIL PROTECTED]">news:98omg2$2n4$[EMAIL PROTECTED]...
> Hi all again,
>
> i' am a very bloody greenhorne with php and maybe i have many questions.
> Heres one a
Check:
http://www.phpbuilder.com/columns/alain20001003.php3
Author should be updating it somedays ;)
Alain
On Wed, Mar 14, 2001 at 10:07:55PM -, Thomas wrote:
> Hi all again,
>
> i' am a very bloody greenhorne with php and maybe i have many questions.
> Heres one another:
>
> Who can e
Actually the manual is a bit off. In order to instantiate a COM object you
need to do:
$object = new COM("adodb.recordset");
Then you should be able to call the corresponding methods and properties:
$object->property = $sumvar;
or what have you.
You might check out http://php.net/manual/en/ref.c
Hi all again,
i' am a very bloody greenhorne with php and maybe i have many questions.
Heres one another:
Who can exlpain to use com in php.
How can i execute methods and read attributes?
I only know how i can craete an object:
$object = new ("adodb.recordset") for exsample, is it not