Well, the simple approach would be to repeat the line
CODE
echo ($quote[$random_number]);
once for each quote that you want to appear. However, that doesn't guarantee that the quotes will be different. To do that, you'll need a function that picks
n random numbers, and guarantees that all the random numbers are different from each other. Then you can call $quote[] with each of the selected random numbers.
If
n is greater than or equal to the number of quotes, then you could just print out all the quotes.