I have a query that fetches 6 results, then I want to randomize those 6 results so whenever the person reloads the page they will be randomized in order.
Out of those 6 results I want to show one in a separate box than the others, how would I do this?
This is what I was thinking, get results, use shuffle() on the array, then in the separate box I do echo array[0]['info'], then the rest I do a $i = 2; while($i <= 6); and echo array[$i]['info'];
What do you think? is there a better way?
I need this function to be as efficient as possible so any tips are appreciated. Separate queries maybe?

