<html> <head> <title>List array values</title> </head> <body> <ol> <?php $arr = array( "Red", "Green", "Blue" ); foreach( $arr as $value ) { echo("<li>Do you like $value ?</li>"); } ?> </ol> </body> </html>