1.

Define if statement in PHP?

Answer»

If statement executes a statement or a group of statements if a specific condition is satisfied as per the user expectation.

Syntax: if (condition)

{

Execute statement(s) if condition is true;

}



Discussion

No Comment Found