here's the scenario:
i want to create a file to a client pc, i use fopen to create a file.
my problem is, access denied since apache has no permission...
how do i log on or connect to client pc using php?
provided i know the username and password to that pc....
Code:
$loc="\\\\mm114\\c\$\\test1.txt"; //i made this constant for testing....
$fh = fopen("$loc", "w"); //CREATE FILE and write file
if($fh==false)
die("unable to create file");
else
print("file created");
fclose($fh);
P.S. without changing the httpd.conf in the apache user and group.