in reply to printing a hash into a table
but what im trying isn't working right now
That's hardly a complete description of the problem. Printing all the hash entries is essentially trivial with each:
while (my ($key, $value) = each %everything) { print "<tr><td>$key</td><td>$value</td></tr>"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: printing a hash into a table
by Boberts (Novice) on Mar 03, 2019 at 23:41 UTC | |
by hippo (Archbishop) on Mar 04, 2019 at 08:58 UTC | |
by Laurent_R (Canon) on Mar 04, 2019 at 08:55 UTC |