PHP - Basics and Execution Model
What will be the output when accessing this PHP file via a browser?
<?php
$time = 10;
if ($time < 12) {
echo 'Good morning';
} else {
echo 'Good afternoon';
}
?>