UNDER CONSTRUCTION
<?php
$file='count.cnt';
$data = fread(fopen($file, "r"), filesize($file)); # use fread, open for reading, how much? full size of file.
$data_split = split("\t", $data); #break up the data into $data_split array, split where the tabs are
$NUM=$data_split[0];
$data= intval($NUM)+1;
$fp = fopen($file, "w", 0); #open for writing
fputs($fp, $data); #write all of $data to our opened file
fclose($fp); #close the file
for ($i=0;$i Copyright © 2000
- 2001 ekhvaabs.
All Rights Reserved.
Revised: March 29, 2008
.
Site Conceived, Designed, Hosted and Maintained by ekhvaabs