summaryrefslogtreecommitdiff
path: root/plugins/Autocomplete/jquery-autocomplete/demo/emails.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Autocomplete/jquery-autocomplete/demo/emails.php')
-rw-r--r--plugins/Autocomplete/jquery-autocomplete/demo/emails.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/plugins/Autocomplete/jquery-autocomplete/demo/emails.php b/plugins/Autocomplete/jquery-autocomplete/demo/emails.php
deleted file mode 100644
index f79b10e4a..000000000
--- a/plugins/Autocomplete/jquery-autocomplete/demo/emails.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-$q = strtolower($_GET["q"]);
-if (!$q) return;
-$items = array(
- "Peter Pan"=>"peter@pan.de",
- "Molly"=>"molly@yahoo.com",
- "Forneria Marconi"=>"live@japan.jp",
- "Master Sync"=>"205bw@samsung.com",
- "Dr. Tech de Log"=>"g15@logitech.com",
- "Don Corleone"=>"don@vegas.com",
- "Mc Chick"=>"info@donalds.org",
- "Donnie Darko"=>"dd@timeshift.info",
- "Quake The Net"=>"webmaster@quakenet.org",
- "Dr. Write"=>"write@writable.com"
-);
-
-echo "[";
-foreach ($items as $key=>$value) {
- if (strpos(strtolower($key), $q) !== false) {
- echo "{ name: \"$key\", to: \"$value\" }, ";
- }
-}
-echo "]"; \ No newline at end of file