This is a PHP tutorial using TXT file Statistics page browsing times JS Call method Oh, is to use JavaScript tutorials to invoke PHP files and php file with JS output format to deal with OH.
? PHP
$countfile = "Num.txt"; Defines that the file written by the counter is count.txt in the current directory, and then we should test whether the file can be opened if ($fp = fopen ($countfile, "intermolecular")) = = False) {//Open file in read-write mode, exit if not open printf ("Open file%s failed!", $countfile); Exit; } Else { If the file can be opened normally, read the data in the file, assuming it is 1 $count = Fread ($fp, 10); Read 10-bit data $count = $count + 1;
Fclose ($FP); Close the current file $fp = fopen ($countfile, "w+"); Open files in overwrite mode Fwrite ($fp, $count); Write new data plus 1 Fclose ($FP); and close the file
echo document.write ("". $count. "") n "; Output data in JavaScript format
} ?> Htmljs Call method
<HTML> <HEAD> <TITLE> Page Separation Counter Example </TITLE> </HEAD>
<body> Hello, you are the first <script language= "JavaScript" src= "filecount.php" // Note the server and directory path where the PHP counter resides. </script> Guest </body> </html>
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.