I\'m trying to get a \"live\" progress indicator working on my php CLI app. Rather than outputting as
1Done 2Done 3Done
I would rather it c
something like this :
for ($i = 0; $i <= 100; $i++) { echo "Loading... {$i}%\r"; usleep(10000); }