Main.php
Download
<?php $x=100; $y=40; if($x ==100 && $y == 40){ echo 'both condition are matched'; }else{ echo 'condition does not match'; } ?>
both condition are matched