M
monx007
Guest
i've tried to copy a file into shared network drive using php script like this one:
$file = 'example.php';
$newfile = '\my_network_drive\example.txt.bak';
if (!copy($file, $newfile))
{ echo "failed to copy $file...\n"; }
but, it fails. When i copy into local folder, it work.
Helpppp,,, thanks in advance for your time and for your response
$file = 'example.php';
$newfile = '\my_network_drive\example.txt.bak';
if (!copy($file, $newfile))
{ echo "failed to copy $file...\n"; }
but, it fails. When i copy into local folder, it work.
Helpppp,,, thanks in advance for your time and for your response