* Martín Marqués <martin@xxxxxxxxxxxxxxx>: > I have to send a PDF file after a submit on a form. The PDF is well created, > and I'm sending it to the client with this: > > $fpdfName = "/tmp/" . session_id() . ".pdf"; > > // Vamos a mandar el PDF > header('Content-type: application/pdf'); > // El archivo se va a llamar libreDeuda.pdf > header('Content-Disposition: attachment; filename="libreDeuda' . > '.pdf"'); > > // El PDF fuente va a ser $ftexName. > readfile($fpdfName); > > The problem is that the PDF file that is sent is corrupted for acroread (xpdf > reads it like a charme), because, after the end of file (%%EOF) of PDF there > is an HTML page add to the file. Likely what's happening is that there's extra output happening after your readfile() call. Do an 'exit();' call right after it, and make sure there's no whitespace after your closing PHP tag (or simply don't include a closing PHP tag). -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org National Gardening Association | http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org mailto:matthew@xxxxxxxxxx | http://vermontbotanical.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php