Possible Duplicate:
PHP file doesn’t write to current directory?
I have a PHP file on a web-host that is as follows:
<?php
file_put_contents('test.txt','TEST');
echo 'OK';
?>
But the file test.txt is not created when I execute the page from a browser. Why not? Is it a permissions issue?

file_put_contentsreturns the number of bytes that were written to the file, or FALSE on failure. Try to see whatfile_put_contentsreturns. – j0k Oct 22 '12 at 10:02