This is a discussion on RE: [PHP] counting clicks within the PHP General forums, part of the PHP Programming Forums category; [snip] Anyone got a script so I can count clicks on adverts. Doesn't have tosve to myqsl or anything ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
[snip]
Anyone got a script so I can count clicks on adverts. Doesn't have tosve to myqsl or anything just a text file will do. [/snip] <?php if("yes" == $adClicked){ $adClickCountFile = fopen("countClick.txt", "w"); $getCount = fgets($adClickCountFile, 4096); $newCount = $getCount + 1; fwrite($adClickCountFile, $newCount); fclose($adClickCountFile); } ?> YMMV |
![]() |
| Thread Tools | |
| Display Modes | |
|
|