Posted by Anonymous on 11/30/05 00:54
bjorn2k@hotmail.com wrote:
>
> Thanks for the information. By the way, i want to call functions from
> an existing API written in C from PHP to display it using a web
> application.
If you are using Windows and the API is contained within a DLL (which is
often the case) then you could call it via rundll32, which you can call
via the PHP system() function.
system('rundll32.exe YourAPI.DLL,FunctionWithinDLL Parameter1 Parameter2
....')
Bye!
[Back to original message]
|