Q. What will be the output of the following PHP code ?
Code:
<?php
$Country = array("INDIA","USA","ENGLAND");
foreach ($Country as $val)
{
echo "$val \n";
}
?>
β
Correct Answer: (D)
INDIA USA ENGLAND