Hi there,
I am at a loss as how to save a simple file on
my local HD using EasyPHP (it works on my web site's PHP).
<?php
$fw = fopen("file.txt","w");
fwrite($fw,"test");
fclose($fw);
?>
Couldn't get simpler, but file.txt isn't written to the HD.
Any ideas what's happened? It used to work in EasyPHP 1.8
but stopped working in 2.0.
Cheers, Dan