Home
Help
Search
Calendar
Login
Register
Please
login
or
register
.
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
News:
Click here to join us on IRC (#charas on irc.freenode.net)!
Charas-Project
»
Off-Topic
»
Archive
»
Really Old Stuff
»
PHP
(Moderator:
De KoFfieŠ
) »
MVW Counter
« previous
next »
Print
Pages: [
1
]
Author
Topic: MVW Counter (Read 3399 times)
GaryCXJk
<strong>Official Charas.EX Team Member</strong>
Exemplar
Posts: 1,586
FOUR OH FOUR'D
MVW Counter
«
on:
May 01, 2004, 07:17:10 PM »
Well, just a basic counter I made in PHP. Problem: no IP check.
Logged
Play it now!
Charas Breakout DX
Area91: for MUGEN and RPG Maker VX Ace stuff
GaryCXJk
<strong>Official Charas.EX Team Member</strong>
Exemplar
Posts: 1,586
FOUR OH FOUR'D
(No subject)
«
Reply #1 on:
May 01, 2004, 07:22:22 PM »
Okay, update. Now it will be recorded with a cookie.
Logged
Play it now!
Charas Breakout DX
Area91: for MUGEN and RPG Maker VX Ace stuff
GaryCXJk
<strong>Official Charas.EX Team Member</strong>
Exemplar
Posts: 1,586
FOUR OH FOUR'D
(No subject)
«
Reply #2 on:
May 01, 2004, 07:26:32 PM »
Okay, fix. Made a small mistake.
Logged
Play it now!
Charas Breakout DX
Area91: for MUGEN and RPG Maker VX Ace stuff
Alex
I am the MASTER!
Administrator
Exemplar
Posts: 1,130
(No subject)
«
Reply #3 on:
May 01, 2004, 07:34:08 PM »
Just 2 suggestions.
1) You used
if (!$_COOKIE['countercookie']) {
blahblah
setcookie("countercookie", 1, time()+3600*24);
}
Maybe better this:
if (!$_COOKIE['countercookie']) {
blahblah
setcookie("countercookie", 1);
}
This way the cookie will expire at the end of the session (when the browser closes).
After all, in a shared computer your counter would miss every other connecton during the day!
2) You may also like to know the hit rating.
if (!$_COOKIE['countercookie']) {
blahblah
setcookie("countercookie", 1, time()+3600*24);
} else {
increase the counter in a 2nd file, for example $id-hits
}
Not necessary, but fun!
Logged
GaryCXJk
<strong>Official Charas.EX Team Member</strong>
Exemplar
Posts: 1,586
FOUR OH FOUR'D
(No subject)
«
Reply #4 on:
May 01, 2004, 07:49:43 PM »
Well, I did the first change, but the second one was a bit useless.
I did however add a new file: the alternate numbers tutorial.
Logged
Play it now!
Charas Breakout DX
Area91: for MUGEN and RPG Maker VX Ace stuff
Alex
I am the MASTER!
Administrator
Exemplar
Posts: 1,130
(No subject)
«
Reply #5 on:
May 02, 2004, 08:06:50 AM »
Well, simple but functional!
Logged
Print
Pages: [
1
]
« previous
next »
Charas-Project
»
Off-Topic
»
Archive
»
Really Old Stuff
»
PHP
(Moderator:
De KoFfieŠ
) »
MVW Counter