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
Instead of
print_r(shuffle($slides));
do
shuffle($slides); print_r($slides);
You see shuffle() shuffles the array in-place