Hi,
how can I access files in the network environment? I tried the following, but it doesn't work! Can anybody help?
<?
$dir = "\\Client01\Share";
$handle = fopen($dir."\adresse.txt", "w");
fputs($handle, "Put something in!");
fclose($handle);
?>
Error is
Warning: fopen("\Client01\Share\adresse.txt", "w") - Permission denied in C:\Inetpub\wwwroot\Intranet\test.php on line 3
How and what permissions do I have to set?