View Single Post
  #5  
Old 07-26-2010, 11:22 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
PHP Code:
this.= { 1234};
this.aElement 0;
this.output this.a[this.aElement];

function 
NextElement() {
  
this.aElement = (this.aElement 1) % this.a.size();
  
this.output this.a[this.aElement];

Reply With Quote