ckl 0 Newbie Poster

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

ckl 0 Newbie Poster

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