Mega Code Archive

 
Categories / Php / Data Type
 

List array values

<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>