Jump to content

Echo Changing Number


lihman

Recommended Posts

I have a loop where I want to echo out a number that changes each time it loops. However, instead of writing a new number each time, I want the same number to change. How can i do that?

 

ex:

 

$i=0;

while($i<=10) {

echo $i;

$i++;

}

 

Instead of that outputing:

012345678910

 

I want the same number to change. Like it is 0, and then it changes to 1, then changes to 2, etc.

 

How can i do that?

 

Link to comment
Share on other sites

<div id="Changing"></div>

<script type="text/javascript">
for(var i=0;i<=10;i++)
{
document.getElementById('Changing').innerText = i;
}
</script>

 

The only way to do it in PHP is to just echo that. So basically, it's not a native thing you can do in PHP

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.