Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/edy/simple-counter
A simple counter script
https://github.com/edy/simple-counter
Last synced: about 1 month ago
JSON representation
A simple counter script
- Host: GitHub
- URL: https://github.com/edy/simple-counter
- Owner: edy
- Created: 2009-12-18T22:03:07.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2009-12-18T22:04:18.000Z (about 15 years ago)
- Last Synced: 2023-04-10T03:12:20.742Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 70.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Counter
How to use the counter:
require_once('counter.php');
$config = array(
'counter' => 'counter.dat',
'ips' => 'ips.dat'
);$counter = new Counter($config);
echo $counter;
Short version:
require_once('counter.php');
echo new Counter;