Main.php
Download
<?php $x=100; $y=40; if($x ==100 || $y == 60){ echo 'at least one condition is matched'; }else{ echo 'no one condition is matched'; } ?>
at least one condition is matched