<?php
$a = 5;
$b = 10;

if ($a == 5 && $b == 10) {
echo “Both conditions are true.”;
} else {
echo “At least one condition is false.”;
}
// Output: Both conditions are true.
?>