| Index | Value |
|---|---|
| 0 | 779 |
| 1 | 938 |
| 2 | 907 |
| 3 | 420 |
| 4 | 81 |
| 5 | 146 |
| 6 | 290 |
| 7 | 475 |
| 8 | 107 |
| 9 | 229 |
Array
(
[0] => 779
[1] => 938
[2] => 907
[3] => 420
[4] => 81
[5] => 146
[6] => 290
[7] => 475
[8] => 107
[9] => 229
)
<?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>";
}
?>