Thread: Chat System
View Single Post
  #14  
Old 12-24-2011, 05:48 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by Gunderak View Post
Whats the difference between if and elseif o.o
They do the exact same thing..
It makes it clear the previous condition was not true, e.g.

PHP Code:
if (5) {
 
// a is greater than 5
} else if (5) {
 
// a is less than 5
} else {
  
// a must b 5

You should use them when appropriate as they make code easier to read.
__________________
Reply With Quote