Do you know about vectors and sets? Suppose you have a set of 3 objects, S = {1, 2, 3}. Permutations of 2 objects count the number of 2-object vectors you can construct from this set (without replacement), so you have the size of the set of vectors {(1, 2), (2, 1), (1, 3), (3, 1), (2,3), (3, 2)}, which is 6 distinct pairs. The amount of combinations of two objects formed from objects of this set is the size of the set of sets {{1, 2}, {1, 3}, {2, 3}} which is 3 distinct pairs. You count combinations when you are only concerned about which objects are in each bag or string of text for example, not the order in which they are in the bag. Permutations matter when you are concerned about the order in which the objects are placed in each bag or text string.
Ie., if you are counting 3-letter words, combination counting would count the words DOT and TOD as the same word, while permutation counting notes that the letters are in a different order and counts them as different words.