this is the code i have
$remote = fopen("a.html", 'r');
$line = fread($remote, 1048576);
if (ereg("2003",$line))
if (ereg("2003",$line)) ONLY works if the file is saved in PC format. If it saved in UNIX format, if (ereg("2003",$line)) doesn't work.
how do i fix the code? what's the difference?? the file is the same except the format(pc or Unix) is different.