Jason -
I had looked it up in the manual, but I am not sure of what to put into
the area /* ... output pdf file ... */
Any help is appreciated....
Todd
++++
If you want the user to be prompted to save the data you are sending,
such as a generated PDF file, you can use the Content-Disposition header
to supply a recommended filename and force the browser to display the
save dialog.
<? php header("Content-type: application/pdf");
header("Content-Disposition: attachment; filename=downloaded.pdf");
/* ... output pdf file ... */
++++
--
Todd Cary
Ariste Software
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]