linux:contadorphp
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
linux:contadorphp [2011/03/29 11:38] – rlunaro | linux:contadorphp [2022/12/02 21:02] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Making a counter in PHP ====== | ||
+ | If you search "free counter" | ||
+ | |||
+ | This little code is a counter that you can add to a website that supports running php and can be added into your website, and is as clean and easy to use as the professional ones. Just add the following code into your website: | ||
+ | |||
+ | <code html> | ||
+ | |||
+ | <img src=" | ||
+ | |||
+ | </ | ||
+ | |||
+ | And that's all!!! Moreover this code supports to add --via slight changes in the code-- support to many websites. | ||
+ | |||
+ | The source code of the file '' | ||
+ | |||
+ | <code php> | ||
+ | <?php | ||
+ | |||
+ | import_request_variables(' | ||
+ | |||
+ | //set the count file | ||
+ | if( $p_id = " | ||
+ | { | ||
+ | $counterfile = " | ||
+ | } | ||
+ | |||
+ | //check the file is readable | ||
+ | if(!($fp = fopen($counterfile," | ||
+ | |||
+ | //grab the value and increase by 1 | ||
+ | $count = (int) fread($fp, 20); | ||
+ | fclose($fp); | ||
+ | $count++; | ||
+ | |||
+ | //show the result, write the new value and close the file | ||
+ | $im = imagecreate( 60, 20); | ||
+ | |||
+ | |||
+ | $bg = imagecolorallocate($im, | ||
+ | $black = imagecolorallocate($im, | ||
+ | |||
+ | imagestring( $im, 5, 3, 2, $count, $black ); | ||
+ | |||
+ | header(' | ||
+ | |||
+ | imagejpeg($im); | ||
+ | |||
+ | $fp = fopen($counterfile, | ||
+ | fwrite($fp , $count); | ||
+ | fclose($fp); | ||
+ | |||
+ | ?> | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | And don't forget to create a file called " | ||
+ | |||
+ | You can check out this website: [[http:// | ||
+ | |||
+ | And if you want just a free counter service, please ask me and I will create another Id for you!!! | ||
+ | |||
+ | --- // |