Adding array elements
<html>
<body>
<ol>
<?php
$arr = array( "Red ","Green ","Blue" );
array_unshift( $arr, "Cyan", "Magenta" );
array_push( $arr, "Yellow", "Black" );
foreach( $arr as $value)
{
echo( "<li>Do you like $value ?</li>");
}
?>
</ol>
</body>
</html>
Related examples in the same category