Anybody have a good function for this?
Try using shuffle() on the array.
You'll need to seed the random number genertor first.
srand ((double)microtime()*1000000); shuffle ($my_array);
Max
Thanks, but shuffle does not work on string indexed arrays. The key-value relationship is destroyed.