I have a windows server 2008 standard edition. I'm trying to execute this simple command so I can later write admin logs on files. Info ain't writing on files or creating the file if it doesn't exist. And the page isn't issuing and warnings or errors about windows permission.
<?php
$file=fopen("1.txt","a");
fwrite($file,"Hello");
?>
Any help ?