Code: [Select]<?php$x = 10;$y = 5;if($x > 8 && $y < 6){ echo "TRUE";}else{ echo "FALSE";}//Hasilnya TRUE?>