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