Where can I find resources and infos about developping a DLL Add-ins for PHP (Windows). I know I have to use COM but I don't really know how to do it properly. I want to try some output on the browser. For example a call to "MyFunction" would display "Hello World!"... Things like that.
Thanks,
Hi,
You dont need to write your own modules to do that. This is an example of what you said
function MyFuction { echo "Hello World!"; }
and all you do is MyFunction();
Elfyn
thanks but I am not a beginner . if you want to develop your own add-ins, so far called extensions, in PHP:
Writing a simple PHP extension http://www.uk.research.att.com/~qsf/phpmodule/ Zend API Doc http://www.zend.com/apidoc/ PHP Manual PHP development http://download.php.net/manual/en/phpdevel.php
I am working on a "Develop your own PHP extensions for Windows", so if someone is interested, do not hesitate to email me.