Main.php
Download
<?php $x=100; $y=40; if($x > $y){ echo 'x variable is greater than y'; }else{ echo 'x variable is less than y'; } ?>
x variable is greater than y