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??