thanks Zachery. but still not working. i access though by share on network. but still can't read the LAN computer text file. my code like this :
\\192.169.1.18\d\Point\point.txt
still unable to read the text... how??
thanks Zachery. but still not working. i access though by share on network. but still can't read the LAN computer text file. my code like this :
\\192.169.1.18\d\Point\point.txt
still unable to read the text... how??
normally we read text file like this..
$filename = "D:/Point/Point.txt";
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
fclose($handle);
if i want read text file on LAN computer.
how to write path name of the text file??