Learn to recurse:
PHP Code:
function onCreated() {
echo(count(10));
}
function count(from) {
if (from > 0) {
echo(from);
from = from - 1;
return count(from);
}
echo(0);
return "Done";
}
Also don't actually use your function, use the one callimuc linked instead.