What displays in a browser when the following code is written? <?php echo "How much are the bananas?"?>
<?php echo "How much are the bananas?"?>
The browser would display an error, since there is no semicolon at the end of the echo command.
The browser would display How much are the bananas?
How much are the bananas?
The browser would display nothing due to a syntax error.
The browser would display an error, since there are no parentheses around the string.