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

    ahh that worked thank you, is there a way to use that to print out say like the first 5 elements of the hash?

      is there a way to use that to print out say like the first 5 elements of the hash?
      That would probably not make too much sense, since hashes are not keeping any order.

      Update: fixed a typo.