Voting

: max(eight, zero)?
(Example: nine)

The Note You're Voting On

MagicalTux at ooKoo dot org
18 years ago
If you need to send a CSV file directly to the browser, without writing in an external file, you can open the output and use fputcsv on it..

<?php
$out
= fopen('php://output', 'w');
fputcsv($out, array('this','is some', 'csv "stuff", you know.'));
fclose($out);
?>

<< Back to user notes page

To Top