View Single Post
Old 12-06-2012, 02:30 AM   PM User | #2
LearningCoder
Regular Coder

 
LearningCoder's Avatar
 
Join Date: Jan 2011
Location: The Pleiades
Posts: 849
Thanks: 67
Thanked 28 Times in 28 Posts
LearningCoder is an unknown quantity at this point
I think is with your if and elseif which need to be paired together. (without any other code inbetween the two).

for example:

PHP Code:
if(something){
//do this
}
elseif(
something different){
//do something else
}
else{
//acts like a 'default' should none of the other if/ifelse statements execute.

Kind regards,

LC.

Last edited by LearningCoder; 12-06-2012 at 02:38 AM..
LearningCoder is offline   Reply With Quote