Hi,
here's my setup:
WINXP
IIS
PHP 4.3.7
Here's my code:
<?
$mymessage = fopen("townlist.txt", "wb");
fwrite($mymessage, "hello");
fclose($mymessage);
?>
All well and good (I think). The problem is that the file won't write and there is no error message. Permissions are set to read/write/execute on the folder. I have also tried every version of the filename using absolute url, relative url etc.
any thoughts?
cheers,
Mike