Jump to content

Count up


BTPlus

Recommended Posts

Any chance you can be a bit more specific like what you want it for?

You can have a script to count up for a lot of things but saying where and what you want to use it in will help give others a lot more help in giving you a satisfactory answer.
Link to comment
Share on other sites

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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.