I want to make it so that my multi dimensional array is in a random order. How would you do it?
// This is how the array looks like print_r($slides); Array
It works perfect. print_r(shuffle($slides))) gives the output of TRUE, since the return value of shuffle is a boolean and not an array.
shuffle
See the working example here: http://codepad.org/B5SlcjGf