<?php
$arr = [
['firsname' => 'Иван', 'lastname' => 'Иванов'],
['firsname' => 'Петр', 'lastname' => 'Петров'],
['firsname' => 'Сергей', 'lastname' => 'Сергеев'],
]
?>
<table>
<tr><th>ID</th><th>Имя</th><th>Фамилия</th></tr>
<?php foreach($arr as $key => $person): ?>
<tr>
<td><?=$key?></td>
<td><?=$person['firsname']?></td>
<td><?=$person['lastname']?></td>
</tr>
<?php endforeach ?>
</table>
$month_arr = array (1=> "Января", "Февраля", "Марта",
"Апреля", "Мая", "Июня",
"Июля", "Августа", "Сентября",
"Октября", "Ноября", "Декабря" );
$month = '';
foreach ($month_arr as $counter => $value ) {
$month .= '<option value="'.$counter.'">'.$value.'</option>' . PHP_EOL;
}
echo '<select name="month">' . PHP_EOL . $month . '</select>';