Skip to content

Instantly share code, notes, and snippets.

@HFahlstedt
Created February 28, 2018 19:39
Show Gist options
  • Save HFahlstedt/bc3a07eea416784efab4dd7d6b95accc to your computer and use it in GitHub Desktop.
Save HFahlstedt/bc3a07eea416784efab4dd7d6b95accc to your computer and use it in GitHub Desktop.
<?
$key = "";
if(array_key_exists("needle", $_REQUEST)) {
$key = $_REQUEST["needle"];
}
if($key != "") {
passthru("grep -i $key dictionary.txt");
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment