Skip to content

Instantly share code, notes, and snippets.

@knorthfield
Last active August 29, 2015 14:23
Show Gist options
  • Save knorthfield/400d06a8cd2b40928464 to your computer and use it in GitHub Desktop.
Save knorthfield/400d06a8cd2b40928464 to your computer and use it in GitHub Desktop.
Add $_POST values to CSV
<?php
if( $_SERVER['REQUEST_METHOD'] == 'post' ){
$fp = fopen('../registrations.csv', 'a');
fputcsv($fp, $_POST);
fclose($fp);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment