in reply to Re^2: Download PDF
in thread Download PDF

I think that you might be on to something, but I'm not sure that I'm sure how to implement this into my script. I tried to add it to my script, but now I get a Software Error:

Can't call method "content_type" on an undefined value at /vhdocs/rollersports/cgi-bin/dlc/ShotGun.cgi

Any idea what would cause this error?

Replies are listed 'Best First'.
Re^4: Download PDF
by BaldPenguin (Friar) on Jun 19, 2005 at 07:14 UTC
    THe example above was mod_perl, you probably got that error because 1) you are not using mod_perl or 2) you are calling your Apache object something other than $r. In the case of #1, a CGI.pm example follows:
    use CGI qw(:standard); print header( 'type' => 'application/pdf', 'attachment' => 'adobe.pdf' );

    Don
    WHITEPAGES.COM | INC

    Edit by castaway: Closed small tag in signature