1.

Write Syntax of the If else statement in PHP?

Answer»

if (condition)

{

Execute statement(s) if condition is true;

}

else

{

Execute statement(s) if condition is false;

}



Discussion

No Comment Found