Main.php
Download
<?php $x=100; $y=40; if($x ==100 || $y == 60){ echo 'only one condition should be match'; }else{ echo 'both condition should be match or not match'; } ?>
only one condition should be match