I want to use the system command to set user's priority
$cmd = "cacls d:\\appserv\\ww w\\accountMng\\ $userName /G $userName:F";
system($cmd);
Then it appears
Are you sure (Y/N)?
How can I pass the "Y" to system by php?
Thanks in advance.
-jiing-
$cmd = "cacls d:\\appserv\\ww w\\accountMng\\ $userName /G $userName:F";
system($cmd);
Then it appears
Are you sure (Y/N)?
How can I pass the "Y" to system by php?
Thanks in advance.
-jiing-
Comment