w3resource

PHP Array Exercises : Display array values in a list

PHP Array: Exercise-2 with Solution

$color = array('white', 'green', 'red'')
Write a PHP script which will display the colors in the following way :

Sample Solution:

PHP Code:

<?php
// Define an array of colors
$color = array('white', 'green', 'red');

// Iterate through each color in the array and echo them with a comma separator
foreach ($color as $c) {
    echo "$c, ";
}

// Sort the colors alphabetically
sort($color);

// Echo the start of an unordered list
echo "<ul>";

// Iterate through each color in the sorted array and echo them as list items
foreach ($color as $y) {
    echo "<li>$y</li>";
}

// Echo the end of the unordered list
echo "</ul>";

?>

Output:

white, green, red,

  • green
  • red
  • white

View the output in browser

Flowchart:

Flowchart: Display array values in a list

Contribute your code and comments through Disqus.

Previous: Write a script which will display the specified string
Next: Create a PHP script which displays the capital and country name from the specified array $ceu. Sort the list by the name of the capital.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.