PHP Learning : If statement. - Publik Talk

Breaking

An informative website for every one.

Post Top Ad

Post Top Ad

Wednesday, August 2, 2017

PHP Learning : If statement.

Description:

Use the If statement to excute some code only if a specified condition is true.


Sample Code:

<?php

$num=12;

if($num<100)

{

echo "$num is less than 100";

}
?>

Output:


No comments:

Post a Comment

Post Top Ad