i'm running the following php script, and where i would expect it to
create a file, test.txt, it doesn't. it isn't in the directory i am
exectuting the script in, nor can i do cat on it (not that i would
expect to, since it doesn't exist, heh):
<?php
print system("ls > test.txt");
print system("cat ls.txt");
?>
create a file, test.txt, it doesn't. it isn't in the directory i am
exectuting the script in, nor can i do cat on it (not that i would
expect to, since it doesn't exist, heh):
<?php
print system("ls > test.txt");
print system("cat ls.txt");
?>
Comment