1
You could run a program rdp through a php site ?
tried
echo exec("start \\192.168.1.233\Teste\Apps\BRAVOS.rdp") or die("ERROU");
and
system("\\192.168.1.233\Teste\Apps\BRAVOS.rdp");
more just carega and back to the page I called the command the application does not open.
it is possible to open in this way?
good when placing $Handle = popen('bravos.bat', 'r'); $read = fread($Handle, 8192); pclose($Handle); in a php file to open and only point a link to it correct ? because when I run bat the program opens more when I point to a file where it contains the above code nothing occurs
– Gabriel Arantes