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.