in reply to Re: Re: Compilation Error
in thread Compilation Error

Hmm, looks like you'll need to fix this line also:
$page .= table ({-border => 1, -align => "center"},
Should probably be (untested):
$page .= table ({-border => 1, -align => "center"});
Remember, perl -c is your friend and will point out these types of errors.

-- vek --