Please note, this is a STATIC archive of website technosmarter.com from 20 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.



<?php 
$x=30;
$y=20;
if($x>$y)
{
echo "X is true greater";
}
else
{
echo "y is true greater";
}

?>