Last active
August 29, 2015 14:23
-
-
Save knorthfield/400d06a8cd2b40928464 to your computer and use it in GitHub Desktop.
Add $_POST values to CSV
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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