PHP if ... else if Statements
The Syntax of if…else if is as follows………
If (condition){
Print (“out put”);}
else if(condition){
print(“out put”);}
else if(condition){
print(“out put”);}
else{
print (“output”);}
You can add numerous number of else if as you want….
0 comments:
Post a Comment