Gallaz Software
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Easy Click-Counter

2 posters

Go down

Easy Click-Counter Empty Easy Click-Counter

Post  Banane9 Sun Jan 09, 2011 7:34 pm

So how to make a Counter, its really easy, you just need a Text file to safe the actual counterstand, to start we read the current counterstand from the .txt file and after that give out the stand and then increase of the stand and saving it again.

<?php
//Opening and reading of the counterstand:
$handle=fopen("clickcounter.txt", "r");
$counterstand=fgets($handle);
fclose($handle);
//Show the Clicks:
echo'Clicks: '.$counterstand.'';
//Increasing and Saving of the clicks:
$counterstand++;
$handle=fopen("clickcounter.txt", "w+");
fwrite($handle, $counterstand);
fclose($handle);
?>
To use it you just must upload it to your webspace and create a simple text file with a "0" in it with the name: "clickcounter.txt"

To display that at Manialinks u just create a simple label with this as text tag: text="Clicks: '.$counterstand.' "
It must be saved to the same .php file

For Help to my Tutorials use the Thread in the Questions&Help Forum
Banane9
Banane9

Posts : 26
Join date : 2010-11-30
Age : 27
Location : Germany

http://banane9.ba.funpic.de/phpbb/

Back to top Go down

Easy Click-Counter Empty Re: Easy Click-Counter

Post  condor Fri Jul 01, 2011 9:36 pm

ok i dont understand this, what i nead tu make php or txt file?

condor

Posts : 1
Join date : 2011-07-01

Back to top Go down

Easy Click-Counter Empty Re: Easy Click-Counter

Post  Banane9 Sat Aug 13, 2011 8:22 pm

basics u can do with editor/notepad that comes with every windows idk how its called at other OS but there should be something like that. if you want to do more skilled stuff get a editor that supports highlighting odf code like Notepad ++
Banane9
Banane9

Posts : 26
Join date : 2010-11-30
Age : 27
Location : Germany

http://banane9.ba.funpic.de/phpbb/

Back to top Go down

Easy Click-Counter Empty Re: Easy Click-Counter

Post  Sponsored content


Sponsored content


Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum