How to get the result of the AHK script execution in PHP?
This is my simple AHK script: MsgBox % "Hello world" ExitApp, 7777 I run this AHK from PHP by following code: $result = exec('start pathahk.exe', $output, $result_code); And now I want to get some data from ahk.exe. But when I…