NAME
Data::HTMLDumper - Uses Data::Dumper to make HTML tables of structures
SYNOPSIS
use Data::HTMLDumper;
print Dumper(\%hash);
ABSTRACT
Data::HTMLDumper turns Data::Dumper::Dumper output into an HTML table.
It's for those who like Data::Dumper for quick peeks at their structures,
but need to display the output in a web browser.
DESCRIPTION
If you like to use Data::Dumper for quick and dirty pictures of your structures during development, but you are now developing for the web, this modules might be for you. It uses Data::Dumper, but formats the results as HTML tables.
It only implements the Dumper method. It can only handle one reference at a time which must be an array or hash reference. If there is any interest, it could be expanded in the future.
EXPORT
Dumper
DEPENDENCIES
Data::Dumper
BUGS and OMISSIONS
Only one reference can be processed in each call. It must be a hash or array ref.
Blessings are not handled well. They don't break the picture, but they are unsightly.
SEE ALSO
This module depends on Data::Dumper to do the real work. Check its documentation for details about how to call Dumper.
AUTHOR
Phil Crow, <philcrow2000@yahoo.com<gt>
COPYRIGHT AND LICENSE
Copyright 2003 by Phil Crow
This library is free software; you can redistribute it and/or modify it under the same terms as Perl 5.8.0 itself.