| Index | Value |
|---|---|
| 0 | 464 |
| 1 | 985 |
| 2 | 835 |
| 3 | 211 |
| 4 | 478 |
| 5 | 684 |
| 6 | 89 |
| 7 | 710 |
| 8 | 289 |
| 9 | 976 |
Array
(
[0] => 464
[1] => 985
[2] => 835
[3] => 211
[4] => 478
[5] => 684
[6] => 89
[7] => 710
[8] => 289
[9] => 976
)
<?php
function showArray($arr)
{
echo "<table border=1 cellspacing=0>
<tr><th>Index</th> <th>Value</th></tr>";
foreach ($arr as $key => $value) {
echo "<tr align=center><td>" . $key . "</td><td>" . $value . "</td></tr>";
}
echo "</table>";
}
?>