Für die, die hören
wollen, was wir so machen, Unser persönlicher
Tipp ist die Langversion von "The Sea": Und bittschön alle die Urheberrechtsdinger beachten wie z.B. nur für den persönlichen Gebrauch runterladen, nicht vervielfältigen, nicht öffentlich abspielen etc. Gaaaanz lieb! Danke! |
||||||||
|
|
|||||||
// // /* Configuration */ $text = 0 ; // 0= graphic counter 1=text counter $file="counterfile.count"; // File that will be used to count $images="http://www.ktor.at/stainlessstill/pix/imagenes/"; // directory of images or http $imagesext=".gif"; // file extension .jpg.gif.xxx anything you like echo "Erase This line"; /* Do Not edit below this point unless you know what you are doing */ if (!file_exists($file)) // Look if file exists { $fp = fopen($file,"w"); //if it dosen't create it fputs ($fp,"0" ); // lets add a 0 in it } else { $fp = fopen($file,"r+"); }; $numcount= fread($fp,filesize($file)); fclose($fp); $numcount++; $fp = fopen($file,"w"); fputs ($fp,$numcount); if ($text) { echo $numcount; } else { $longstr = strlen($numcount); for ($x=0; $x < $longstr; $x++) { echo ""; } } ?>
|
||||||||
Counter: © 2000 by Roberto Salvatierra | ||||||||