View Single Post
  #4  
Old 08-05-2013, 03:33 PM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
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.
__________________
Quote:
Reply With Quote