Jump to content

Count up


BTPlus

Recommended Posts

As long as it counts up instead of down, what it's used for is not important. I want to be able to enter a beginning number in the script, add a multiplier and a time component, and have the script count from the beginning number upward by using the multiplier and the time component. In other words, start at 5000 and count by (add) 2 every 3 seconds.

Thanks,
Kris
Link to comment
https://forums.phpfreaks.com/topic/7253-count-up/#findComment-26410
Share on other sites

[!--quoteo(post=364232:date=Apr 12 2006, 07:54 PM:name=kenrbnsn)--][div class=\'quotetop\']QUOTE(kenrbnsn @ Apr 12 2006, 07:54 PM) [snapback]364232[/snapback][/div][div class=\'quotemain\'][!--quotec--]
What are you planning on doing with this number?

[code]<?php
for ($i = 5000; $i < 100000; $i += 2) {
    echo $i.'<br>';
    sleep(3); }
?>[/code]

Ken
[/quote]


I was thinking about putting it on my website as a counter for the number of viruses that have been cleaned off of the computers I have worked on. I have kept records of the number of viruses and spyware I have clean off for my customers. I now have a calculated yearly average. I will setup the counter to automatically count.
Link to comment
https://forums.phpfreaks.com/topic/7253-count-up/#findComment-26438
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.