Skip to content

Instantly share code, notes, and snippets.

@dogmatic69
Created November 20, 2009 13:14
Show Gist options
  • Save dogmatic69/239494 to your computer and use it in GitHub Desktop.
Save dogmatic69/239494 to your computer and use it in GitHub Desktop.
a layout for csv
<?php
// the layout
header( 'Content-type: application/octet-stream' );
header( 'Content-Disposition: attachment; filename="my-data.csv"');
echo $content_for_layout;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment