diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-08-08 18:11:47 +0000 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-08-08 18:11:47 +0000 |
commit | e3bb64cd6ceb9519aaed435fcb7dccb7e16e674d (patch) | |
tree | 97f5b0a35565a4300f352dc308ee0089926c0f4e /plugins/Autocomplete/jquery-autocomplete/demo/emails.php | |
parent | c03d5932877c15eb673febabda5227df2173fbad (diff) | |
parent | 932d1fb7ce06081c788ea088171fd69ef03cd394 (diff) |
Merge branch '0.8.x' into twitter-oauth
Diffstat (limited to 'plugins/Autocomplete/jquery-autocomplete/demo/emails.php')
-rw-r--r-- | plugins/Autocomplete/jquery-autocomplete/demo/emails.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/plugins/Autocomplete/jquery-autocomplete/demo/emails.php b/plugins/Autocomplete/jquery-autocomplete/demo/emails.php new file mode 100644 index 000000000..f79b10e4a --- /dev/null +++ b/plugins/Autocomplete/jquery-autocomplete/demo/emails.php @@ -0,0 +1,23 @@ +<?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 |