A
Q. What will be the output of the following PHP code ?
Code:
<?php
$Country = array("INDIA","USA","ENGLAND");
foreach ($Country as $val)
{
echo "$val
";
}
?>
$Country = array("INDIA","USA","ENGLAND");
foreach ($Country as $val)
{
echo "$val
";
}
?>
- Correct Answer - Option(D)
- Views: 29
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.