Say I have stored a query in a variable called $query. I want to create small hyper link called "export as CSV" on the results page. How do i do this?
|
|
|
|
|
|
|
|
||
|
|
|
ehm ?
and if you are looking for script wich can do this:
|
||||
|
|
|
CSV = Comma Separated Values = Separate your Values with Commas you have to echo / print your result line by line, separated with comma (,). I assume your $query is the result set of your query, which is an associative array:
where $rs is the resource handle. To let the browser pops up a download box, you must set the header at the beginning of the file (assume your file name is export.csv):
That's it! p.s. This method won't leave a physical file in the server. If you intended to generate a file in the server, use traditional fopen and fwrite functions. |
|||
|
|
