Can somebody explain why the following works...
<?php
system("ls /home/hans/");
?>
and this not.....
<?php
system("cp /home/hans/data.txt /home/hans/data.tx2");
?>
For the life of me, I can't figure it out. I simply want to copy a file, so why won't php let me do this? Please help, because I'm getting a little frustrated. --Hans