Skip to content

Instantly share code, notes, and snippets.

@pchatterjee
Created March 6, 2023 20:31
Show Gist options
  • Select an option

  • Save pchatterjee/c221945ba4433a088599dab09dd77af3 to your computer and use it in GitHub Desktop.

Select an option

Save pchatterjee/c221945ba4433a088599dab09dd77af3 to your computer and use it in GitHub Desktop.
<?php
# open the file ready for append
$fh = fopen("survey.csv", "a");
# append $_POST global to file
fputcsv($fh, $_POST);
# close the file
fclose($fh);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment