Thank you, thessoro. My 2 questions have been answered.
THERE is another one:
I want the $stat add 1 every time the php page downloaded, but the scripts failed , where is wrong? $stat is a download counter.
TAHNKS!
$filename="some.txt";
$fp=fopen($filename,"w+" );
$stat=fread($fp,filesize($filename));
$stat=intval($stat);
$stat=$stat++;
$stat=strval($stat);
rewind($fp);
fwrite($fp,$stat);
fclose($fp);