-
What will be the output of the following PHP code?
<?php
$Flower = array("Rose", "Lily", "Sunflower");
echo "I like " . $Flower[0] . ", " . $Flower[1] . " and " . $Flower[2] . ".";
?>
-
- Error
- Nothing
- Rose Lily Sunflower
- I like Rose, Lily and Sunflower.
- None of these
Correct Option: D
The array() function is used to create an array.