Jump to content

Automatic Download of File


nfr

Recommended Posts

Hello -

I would like to collect details about an individual (Name, Company Name, Telephone Number, Email Address, Web Address, etc.) in a mySQL table and when then form is submitted, automatically download a file (or email) a PDF file containing the information they have requested. What would be the best way of going about this?

Regards,

Neil.
Link to comment
https://forums.phpfreaks.com/topic/10774-automatic-download-of-file/
Share on other sites

[code]<?php
// We'll be outputting a PDF
header('Content-type: application/pdf');

// It will be called downloaded.pdf
header('Content-Disposition: attachment; filename="downloaded.pdf"');

// The PDF source is in original.pdf
readfile('original.pdf');
?> [/code]
[a href=\"http://www.php.net/header\" target=\"_blank\"]http://www.php.net/header[/a]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.