quote:
Originally posted by BART_SIMPSON416
Well, i don't see a problem then.
Don't say that you don't know how to use the exec() command
The command line is the key to controlling programs with php.
or if you run it as a WSH langauge you can use
code:
$shell = new COM("WScript.Shell");
then you have the full wsh shell so you can use sendkeys like so...
code:
$shell->SendKeys("MAHAHAHAHAH");
or launch notepad (you could do this with the exec command tho...)
code:
$shell->Run ("notepad.exe", 1);
or ofcorse you could just use a php extention like
http://pecl.php.net/package/ffi and register those api calls then call them but eh