Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Old 09-08-2011, 02:16 AM else if and elseif
Skilled Talker

Posts: 72
Location: singapore
Trades: 0
What is the different this else if and elseif?
__________________

Please login or register to view this content. Registration is FREE
zelllibin is offline
Reply With Quote
View Public Profile Visit zelllibin's homepage!
 
 
Register now for full access!
Old 09-08-2011, 02:39 AM Re: else if and elseif
lizciz's Avatar
Super Spam Talker

Posts: 807
Name: Mattias Nordahl
Location: Sweden
Trades: 0
"else if" is two seperate commands, whereas "elseif" is a special construct in php which does the same thing using only one command.

"else if" basically means this
PHP Code:
if ($condition1) {
   
// ...
} else {
   if (
$condition2) {
      
// ...
   
}

Whereas the elseif key word makes it slightly more condensed
PHP Code:
if ($condition1) {
   
// ...
} elseif ($condition2) {
   
// ...

But of course, the end result is the same.
__________________
Your answers will only be as good as your question. Formulate it well and give all the necessary information.
lizciz is offline
Reply With Quote
View Public Profile Visit lizciz's homepage!
 
Reply     « Reply to else if and elseif
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.24830 seconds with 12 queries