Data-Tabular

 view release on metacpan or  search on metacpan

examples/table1.cgi  view on Meta::CPAN

#!/usr/bin/perl
use strict;

use CGI;

#use lib '../blib/lib/';
#use lib '../lib/';

use Data::Tabular;

print "content-type: text/html\n\n";

our ($t1);

print q(<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
);
print "<html>\n<head><title>Data-Tabular test 1</title></head>\n<body>\n";

eval {
    $t1 = Data::Tabular->new(

t/cgi.t  view on Meta::CPAN

#!/usr/bin/perl
use strict;

print "content-type: text/html\n\n";

use Data::Tabular;

our $t1;

use Test::More;

BEGIN { plan tests => 2 };

eval {



( run in 2.531 seconds using v1.01-cache-2.11-cpan-524268b4103 )