CodeIgniter Forums
Output pdf in other page - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30)
+--- Thread: Output pdf in other page (/showthread.php?tid=90912)



Output pdf in other page - pippuccio76 - 05-21-2024

hi ,

hi have a pdf that work fine,it  open in browser  with tcpdf . there is a way to redirect to a page (base_url() f.e.) and show pdf in other page ? i try :

Code:
        //Close and output PDF document
        $pdf->Output('Doa Bloccato', 'I');

        $response = response();

        $response->setHeader('Content-Type', 'application/pdf');

        return redirect()->to(base_url());

but doesn't show pdf , if i comment return line pdf are show.


RE: Output pdf in other page - ozornick - 05-21-2024

No. Use target=”_blank” for link


RE: Output pdf in other page - pippuccio76 - 05-21-2024

(05-21-2024, 11:24 AM)ozornick Wrote: No. Use target=”_blank” for link

it's a controller method , i would be open 2 page at the same time , it is possible ?


RE: Output pdf in other page - ozornick - 05-21-2024

Two per request is not available. Maybe through JS?