Skip to content

Instantly share code, notes, and snippets.

@kopiro
Created August 4, 2011 08:54
Show Gist options
  • Save kopiro/1124758 to your computer and use it in GitHub Desktop.
Save kopiro/1124758 to your computer and use it in GitHub Desktop.
Instant Search Tutorial - ajax.php
<?php
$q = $_GET["q"];
if ($handle = opendir("."))
while ($file = readdir($handle))
if (is_file($file) && preg_match("/$q/i", $file))
echo "$file <br />";
closedir($handle);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment