View Single Post
  #4  
Old 08-13-2007, 06:16 PM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
Actually nesting is like this:
PHP Code:
if (blah == blah) {
  if (
foo == bar) {
    
doFooBar();
  }
  else if (
== b) {
    
doFoolessBar();
  }
}
else {
  
doOtherthings();

Notice the
PHP Code:
  if (foo == bar) {
    
doFooBar();
  }
  else if (
== b) {
    
doFoolessBar();
  } 
is nested inside the
PHP Code:
if (blah == blah) { 
?
__________________
Do it with a DON!
Reply With Quote