I am using red hat enterprise edition n try making a simple php page..
When I try with ...
// html code
<?php
echo exec(<cmd>);
?>
// rest html code
Its working fine
but when tried with ...
// html code
<?php
exec(<cmd>);
?>
// rest html code
Its not working
even a simple command like cat,ls,etc not working and also I tried 2 > &1 then no error is printed .
What could be the possible error ???
echo? You shouldn't, asexecwon't write anything to stdout. – meagar Oct 20 '11 at 17:21-vswitch then also won't it write anything ? – Udit Gupta Oct 20 '11 at 17:24execis a function in PHP, it doesn't accept switches. – meagar Oct 20 '11 at 18:51verbosefor command line and the command is used to sent a packet on network so I thoughtexecshould work because I do not want its response on the same machine. – Udit Gupta Oct 24 '11 at 20:26