<?php
$temperature = 25;
if ($temperature > 30) {
echo "It's hot outside!";
} elseif ($temperature >= 20 && $temperature <= 30) {
echo "The weather is pleasant.";
} else {
echo "It's cold outside.";
}
?>
<?php
$temperature = 25;
if ($temperature > 30) {
echo "It's hot outside!";
} elseif ($temperature >= 20 && $temperature <= 30) {
echo "The weather is pleasant.";
} else {
echo "It's cold outside.";
}
?>