Predmet:Brojac posjeta
   
Brojac posjeta
PreuzmiIzvorni kôd (PHP):- <?php 
-   
- /** 
- * Create an empty text file called counterlog.txt and 
- * upload to the same directory as the page you want to 
- * count hits for. 
- * 
- * Add this line of code on your page: 
- * <?php include "text_file_hit_counter.php"; ?> 
- */ 
-   
- // Open the file for reading 
- $fp = fopen("counterlog.txt", "r"); 
-   
- // Get the existing count 
- $count = fread($fp, 1024); 
-   
- // Close the file 
-   
- // Add 1 to the existing count 
- $count = $count + 1; 
-   
- // Display the number of hits 
- // If you don't want to display it, comment out this line 
- echo  $count . " posjeta od 17.2.2011 "; 
-   
- // Reopen the file and erase the contents 
- $fp = fopen("counterlog.txt", "w"); 
-   
- // Write the new count to the file 
-   
- // Close the file 
-   
- ?> 
    
     Podrska samo putem foruma, jer samo tako i ostali imaju koristi od toga.