├── urban.php └── urban.html /urban.php: -------------------------------------------------------------------------------- 1 | 'the word is anime', 5 | 'ajax' => 'What CSC337 is learning now', 6 | 'cool' => 'This is really cool', 7 | 'bro' => 'My brother!!', 8 | 'ajax' => 'What CSC337 is learning now', 9 | 'fnord' => 'Disinformation or irrelevant information intending' . 10 | 'to misdirect, with the implication of a conspiracy.', 11 | ); 12 | $term = $_GET ["n"]; 13 | if (array_key_exists($term,$terms)){ 14 | echo ''.$term.": ". $terms[$term]; 15 | } 16 | else{ 17 | echo 'Not Here: not found in my small dictionary'; 18 | } 19 | 20 | ?> -------------------------------------------------------------------------------- /urban.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | urban dictionary lookup 7 | 8 | 9 |

Urban Dictionary Lookup

10 | Enter a term: Choices limited to 'anime', 'ajax', 'cool, 'bro', 'fnord' 11 |
?
12 | 33 | 34 | --------------------------------------------------------------------------------