<?php
$array1=range('a','k');
$counts=count($array1);
for($i=0;$i<$counts;$i++)
{
echo $array1[$i];
echo"<br>";
}
?>