In php I need to Load a file and get all of the words and echo the word and the number of times each word shows up in the text, (I also need them to show up in descending or
$words = str_word_count($text, 1); $word_frequencies = array_count_values($words); arsort($word_frequencies); print_r($word_frequencies);