So I have this code below.
<?php
$i = 1;
while($i <= 1000) {
echo "Number : $i <br />";
$i++;
}
?>
I want to add some animation while php creating these array one after another, it's like appearing text animation. Is there any way to do that?
Thanks in advance. Any help will be much appreciated.