Sure,
the html tag <pre> is a formatting command that tells the browser that the text that is about to appear is already formatted, ie to pay attention to the 'whitespace' and 'eol' (end of lines) in between the words.
The php function: print_r($your_array);
echos out a formatted display of the contents of your array.
Put them together and you get a pretty display of all the information in your results array.
Great for checking on missing data, typos, all that jazz.
oh, almost forgot, if you are going to do a foreach loop through the array after a print_r, your have to reset the array back to the beginning, so:
print_r($some other array);
reset($some_other_array);
This doesn't matter for what you are doing today, but if you keep using print_r it will come back to bite you.
-- Will