Switch to full style
:read: Start PHP with us. Includes topics to help you in php
Post a reply

File page counter in php

Sun Oct 26, 2008 11:11 pm

Code:
       
<?php
$cfile
= "myData.dat";
$fh = fopen($cfile, "r+");

if (!
$fh){
    die(
"<BR>Failed to open file <I>$cfile</I>.");
}
$s = fgets($fh, 6);

$count = (int) $s;
$count = $count + 1;
$count = str_pad($count, 6);

rewind($fh);
fwrite($fh, $count);

echo
"$count";

fclose($fh);
?>




Post a reply
  Related Posts  to : File page counter in php
 jsp page counter     -  
 Use cookie to create page counter     -  
 Use cookie to create page counter     -  
 Image Scroller-scrollbar-LINE_UP,LINE_DOWN-PAGE-UP-PAGE-DOWN     -  
 reset the list counter     -  
 Writing a Counter to any PORT     -  
 ramp Counter ANALOGUE TO DIGITAL CONVERSION (ADC)     -  
 old NASA style counter built from Swing components     -  
 Encrypt/Decrypt a file from source file to target file.     -  
 Copy file to file in java code- implementation     -  

Topic Tags

PHP Files and I/O