Skip to content

Instantly share code, notes, and snippets.

@melmi
Created October 10, 2016 08:32
Show Gist options
  • Save melmi/96e2a11eb3fa79cd401587a02be1918c to your computer and use it in GitHub Desktop.
Save melmi/96e2a11eb3fa79cd401587a02be1918c to your computer and use it in GitHub Desktop.
<?php
$query_string = $_SERVER['QUERY_STRING'];
$fp = fopen("dllist.txt", "a");
flock($fp, LOCK_EX);
fputs($fp, $query_string);
fputs($fp, "\n");
flock($fp, LOCK_UN);
fclose($fp);
print("Saved.");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment