Hi!
I had a php page which uses exec function to run an exe : addgroup.
The exe addgroup create a folder on the server.
The code :
...
$command="C:/WebEdu/PHP/PHPTest2/addgroup.exe test1";
exec($command, $list, $ret);
...
My problem is that when I run the php page, it returns me :
$list = "Error 5"
$ret = 1
Why?????
I wait for your advices!
Thanks!
Melanie