├── .gitignore ├── favicon.ico ├── opensearch.xml ├── index.htm └── search.php /.gitignore: -------------------------------------------------------------------------------- 1 | # OS junk 2 | .DS_Store 3 | Thumbs.db 4 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batterseapower/prefix-search/master/favicon.ico -------------------------------------------------------------------------------- /opensearch.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Prefix Search 4 | Prefix Search 5 | http://prefix-search.omega-prime.co.uk/favicon.ico 6 | 7 | 8 | 9 | http://prefix-search.omega-prime.co.uk 10 | -------------------------------------------------------------------------------- /index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | Prefix Search 4 | 5 | 6 | 7 |

Prefix Search

8 | 9 |

I am a simple search provider that easily lets you use multiple different search 10 | engines by adding a prefix to your searches. For example, you could search for 11 | rt Fight Club to run a search 12 | for that film on Rotten Tomatoes.

13 | 14 |

A full list of prefixes you can use is available by searching for 15 | nothing at all.

16 | 17 |
18 | 19 | 20 |
21 | 22 | -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- 1 | 68 | 69 | 70 | Prefix Search 71 | 72 | 73 | 74 |

Prefix Search

75 | 76 | 77 | 78 | 79 | 80 | 81 | $provider_string) { 87 | $encoded_provider_string = htmlentities($provider_string); 88 | echo ""; 89 | if ($i == 0) { 90 | $provider_strings_count = sizeof($provider_strings); 91 | echo ""; 92 | } 93 | echo ""; 94 | } 95 | } 96 | ?> 97 |
PrefixTemplate
$encoded_provider_string$encoded_provider_template
98 | 99 | 100 | 133 | --------------------------------------------------------------------------------