Skip to content

Instantly share code, notes, and snippets.

@0x4a
Created April 1, 2021 22:34
Show Gist options
  • Save 0x4a/fabdad69b9f0fe298824537fb5f8d8d2 to your computer and use it in GitHub Desktop.
Save 0x4a/fabdad69b9f0fe298824537fb5f8d8d2 to your computer and use it in GitHub Desktop.
<?php
$order = $_GET['order'];
if (isset($order)) {
$fp = fopen('pageviews.csv', 'a');
fwrite($fp, $order . "\n");
fclose($fp);
echo "registered order: " . $order;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment