Save CSV file to server
I have a script that exports data from mysql to a csv file. Everything works great. However, I do not know how to save the csv file to the server.
PHP
I want to serve invoices for download. Currently I'm using a simple numbering scheme (invoice-01.pdf, invoice-02.pdf, and so on). I know that I could use ...
save file as pdf using header
<?php header(Content-type:application/pdf); // It will be called downloaded.pdf header(Content-Disposition:attachment ...
header - Manual
Remember that header() must be called before any actual output is sent, either by normal HTML tags, blank lines in a file, or from PHP. It is a very common ...
PHP header() Function
The header() function sends a raw HTTP header to a client. It is important to notice that the header() function must be called before any actual output is sent!