>>>>> "William" == William Ross <[EMAIL PROTECTED]> writes:
William> but I've always been happy with something like:
William> use Data::Dumper;
William> ....
William> print "<pre>" . Dumper($HoHoHo) . "</pre>";
you'll be happier with
use Data::Dumper;
use HTML::Entities qw(encode_entities);
...
print "<pre>".encode_entities(Dumper($HoHoHo))."</pre>";
Unless you happen to be blessed with no less-thans or ampersands in
your data.
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<[EMAIL PROTECTED]> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!