Connect to a windows process in php
How can I connect to a process like the calculator provided by windows or access my page whenever I star开发者_开发问答t up the windows.
I suppose you just want to start a Windows program within your script. This would be something like
<?php
system('c:\path\to\exe\file\program.exe -param1 -param2');
?>
精彩评论