Thread: Array Problems
View Single Post
  #1  
Old 07-20-2007, 07:52 PM
HolySheepy HolySheepy is offline
Registered User
Join Date: Apr 2007
Posts: 68
HolySheepy is on a distinguished road
Array Problems

PHP Code:
//#CLIENTSIDE
function onCreated(){
  
this.meowarray = { };
  for( 
temp.ay 0temp.ay 64temp.ay++ ){
    for( 
temp.ax 0temp.ax 64temp.ax++ ){
      
this.meowarraytemp.ax ][ temp.ay ] = 1;
      if( 
temp.ax == && temp.ay == ) echo( this.meowarraytemp.ax ][ temp.ay ] );      
    }
  } 

it echoes 0 x.x
why that?
Reply With Quote