Yes, you can use if statement inside else. 
You can use either elseif , it simply means that if no previous condition is true then it will look this condition, however, in this  condition it will also check condition given.
Other way is :
if ()
{
......
}
else 
{
if(new condition)
{
}
}