Hi and happy new year to everyone in this forum.
I have a problem in running an external executable .exe or .bat. For example using the following php code:
$abc=system("test.bat 2>&1");
printf ("TEST1:");
printf ($abc);
$abc=system("whoami 2>&1");
printf ("TEST2:")...