Monday 5 September 2016

If...else to check who is grater than

 If...else to check who is grater than

<?php
$x=10;
$y=0.90;
if($x>$y)
{
    echo "$x is grater";
}
else
{
    echo "$y is graeter";
}
?>

No comments:

Post a Comment